123456789101112131415161718192021222324252627 |
- {
- "root": true,
- "compilerOptions": {
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noImplicitAny": true,
- "target": "es2018",
- "module": "esnext",
- "strict": true,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "strictFunctionTypes": true,
- "strictPropertyInitialization": true,
- "baseUrl": ".",
- "paths": {
- "@components/*": ["src/html/components/*"],
- },
- },
- "include": [
- "src/ts/**/*"
- ],
- "exclude": [
- "dist",
- "node_modules",
- ]
- }
|