123456789101112131415161718192021222324252627282930 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "declaration": true,
- "removeComments": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "allowSyntheticDefaultImports": true,
- "target": "ES2023",
- "sourceMap": true,
- "outDir": "./dist",
- "baseUrl": "./",
- "incremental": true,
- "skipLibCheck": true,
- "strictNullChecks": true,
- "forceConsistentCasingInFileNames": true,
- "noImplicitAny": true,
- "strict": true,
- "strictBindCallApply": false,
- "noFallthroughCasesInSwitch": false,
- "paths": {
- "@app/common": [
- "libs/common/src"
- ],
- "@app/common/*": [
- "libs/common/src/*"
- ]
- }
- }
- }
|