123456789101112131415161718192021222324252627282930313233343536 |
- {
- "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" ],
- "@shared/*": [ "app/shared/*" ],
- "@core": [ "app/core/" ],
- "@core/*": [ "app/core/*" ],
- "@testing": [ "testing/" ],
- "@testing/*": [ "testing/*" ],
- "@env": [ "environments/" ],
- "@env/*": [ "environments/*" ],
- "@index":["app/component"],
- "@config":[ "app/config/config" ],
- "@tools":[ "app/config/tool-fun" ],
- "@ajax":[ "app/services/ajax.service" ],
- "@models":["app/models/"]
- }
- }
- }
|