| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "commonjs",
- "lib": ["ES2020"],
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "removeComments": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "noImplicitThis": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "moduleResolution": "node",
- "baseUrl": "./",
- "paths": {
- "@/*": ["src/*"]
- },
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "dist"
- ]
- }
|