12345678910111213141516 |
- {
- "compilerOptions": {
- "outDir": "./dist",
- "allowJs": true,
- "target": "ES5",
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "allowUnreachableCode": true,
- "allowUnusedLabels": true,
- "strictNullChecks": true,
- "noImplicitAny": false,
- },
- "include": [
- "./src"
- ]
- }
|