1234567891011121314151617181920212223242526272829303132 |
- {
- "compileOnSave": true,
- "compilerOptions": {
- "module": "commonjs",
- "noImplicitAny": true,
- "removeComments": true,
- "preserveConstEnums": true,
- "sourceMap": true,
- "outDir": "build",
- "lib": ["es2018", "dom"],
- "esModuleInterop": true,
- "target": "es2018",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "baseUrl": ".",
- "paths": {
- "@shared/*": ["../shared/src/*"]
- }
- },
- "references": [
- {
- "path": "../shared"
- }
- ],
- "include": [
- "src/**/*.ts",
- "src/**/*.js"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|