123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "CommonJS",
- "declaration": true,
- "allowSyntheticDefaultImports": true,
- "moduleResolution": "Node",
- "sourceMap": true,
- "outDir": "dist",
- "strict": true,
- "alwaysStrict": true,
- "strictNullChecks": true,
- "strictPropertyInitialization": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noFallthroughCasesInSwitch": true,
- "esModuleInterop": true,
- "baseUrl": ".",
- "paths": {
- "*": ["node_modules/*", "src/*"]
- }
- },
- "exclude": ["node_modules", "dist"],
- "include": ["*.ts", "**/*.ts"]
- }
|