123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "noFallthroughCasesInSwitch": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noImplicitAny": true,
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "strictFunctionTypes": true,
- "strictPropertyInitialization": true
- },
- "include": [
- "src/ts/**/*"
- ],
- "exclude": [
- "dist",
- "node_modules",
- "plugins"
- ]
- }
|