12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "outDir": "./dist",
- "allowJs": true,
- "target": "ES5",
- "strict": true,
- "alwaysStrict": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "allowUnreachableCode": true,
- "allowUnusedLabels": true,
- "strictNullChecks": true,
- "noImplicitAny": false,
- "checkJs": true,
- "declaration": true,
- "sourceMap": true,
- "removeComments": true,
- "importHelpers": true,
- "moduleResolution": "node",
- "module": "commonjs"
- },
- "include": [
- "./src"
- ]
- }
|