| 123456789101112131415161718192021 |
- {
- "compilerOptions": {
- "target": "ES2020",
- "module": "CommonJS",
- "moduleResolution": "Node",
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["src/*"]
- }
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules"]
- }
|