1
0
Fork 0
mirror of https://github.com/kou029w/megabit.git synced 2025-01-30 21:58:04 +00:00
megabit/tsconfig.base.json
2020-02-07 12:34:43 +09:00

22 lines
509 B
JSON

{
"exclude": ["cjs", "esm"],
"compilerOptions": {
"target": "esnext",
"moduleResolution": "node",
"allowJs": true,
"declaration": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"typedocOptions": {
"mode": "file",
"out": "docs"
}
}