12345678910111213141516171819202122232425262728293031 |
- {
- "root": true,
- "compilerOptions": {
- "noFallthroughCasesInSwitch": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noImplicitAny": true,
- "module": "esnext",
- "alwaysStrict": true,
- "strict": true,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "strictFunctionTypes": true,
- "strictPropertyInitialization": true,
- "baseUrl": ".",
- "paths": {
- "@components/*": ["src/html/components/*"],
- },
- /* Language and Environment */
- "target": "es6",
- "lib": ["es2018", "DOM"],
- },
- "include": [
- "src/ts/**/*"
- ],
- "exclude": [
- "dist",
- "node_modules",
- ]
- }
|