| 123456789101112131415161718192021 |
- {
- "compilerOptions": {
- "baseUrl": "./",
- "paths": {
- "@/*": [
- "src/*"
- ]
- },
- "module": "commonjs",
- "target": "es2017",
- "noImplicitAny": true,
- "outDir": "./dist",
- "sourceMap": true,
- "esModuleInterop": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true
- },
- "include": [
- "src/**/*"
- ]
- }
|