1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "esnext",
- "lib": ["dom", "esnext"],
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "module": "commonjs",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "outDir": "dist",
- "sourceMap": true,
- "strict": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "strictPropertyInitialization": false,
- "skipLibCheck": true
- },
- "exclude": ["node_modules", "dist"]
- }
|