123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "compileOnSave": false,
- "compilerOptions": {
- "outDir": "./dist/out-tsc",
- "sourceMap": true,
- "declaration": false,
- "moduleResolution": "node",
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "target": "es5",
- "typeRoots": [
- "node_modules/@types"
- ],
- "lib": [
- "es2017",
- "dom"
- ],
- "baseUrl": "src/",
- "paths": {
- "@shared/*": [
- "app/shared/*"
- ],
- "@services/*": [
- "app/services/*"
- ],
- "@core": [
- "app/core/"
- ],
- "@core/*": [
- "app/core/*"
- ],
- "@testing": [
- "testing/"
- ],
- "@testing/*": [
- "testing/*"
- ],
- "@env": [
- "environments/"
- ],
- "@env/*": [
- "environments/*"
- ],
- "@shared": [
- "app/shared/shared.module"
- ],
- "@components": [
- "app/components"
- ],
- "@models": [
- "app/models"
- ],
- "@tools": [
- "app/config/tools"
- ],
- "@global": [
- "app/services/global.service"
- ],
- "@config": [
- "app/config/config"
- ]
- }
- }
- }
|