16 changed files with 5159 additions and 1793 deletions
File diff suppressed because it is too large
@ -0,0 +1,45 @@ |
|||
{ |
|||
"compileOnSave": false, |
|||
"compilerOptions": { |
|||
"baseUrl": "./", |
|||
"outDir": "./dist/out-tsc", |
|||
"sourceMap": true, |
|||
"declaration": false, |
|||
"module": "es2020", |
|||
"moduleResolution": "node", |
|||
"emitDecoratorMetadata": true, |
|||
"experimentalDecorators": true, |
|||
"allowSyntheticDefaultImports": true, |
|||
"importHelpers": true, |
|||
"target": "es5", |
|||
"jsx": "react", |
|||
"typeRoots": [ |
|||
"node_modules/@types", |
|||
"src/typings/rawloader.typings.d.ts", |
|||
"src/typings/jquery.typings.d.ts", |
|||
"src/typings/jquery.flot.typings.d.ts", |
|||
"src/typings/jquery.jstree.typings.d.ts", |
|||
"src/typings/split.js.typings.d.ts", |
|||
"src/typings/add-marker.d.ts", |
|||
"src/typings/leaflet-editable.d.ts" |
|||
], |
|||
"paths": { |
|||
"@app/*": ["src/app/*"], |
|||
"@env/*": [ |
|||
"src/environments/*" |
|||
], |
|||
"@core/*": ["src/app/core/*"], |
|||
"@modules/*": ["src/app/modules/*"], |
|||
"@shared/*": ["src/app/shared/*"], |
|||
"@home/*": ["src/app/modules/home/*"], |
|||
"jszip": [ |
|||
"node_modules/jszip/dist/jszip.min.js" |
|||
] |
|||
}, |
|||
"lib": [ |
|||
"es2018", |
|||
"es2019", |
|||
"dom" |
|||
] |
|||
} |
|||
} |
|||
@ -1,45 +1,20 @@ |
|||
/* |
|||
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. |
|||
It is not intended to be used to perform a compilation. |
|||
|
|||
To learn more about this file see: https://angular.io/config/solution-tsconfig. |
|||
*/ |
|||
{ |
|||
"compileOnSave": false, |
|||
"compilerOptions": { |
|||
"baseUrl": "./", |
|||
"outDir": "./dist/out-tsc", |
|||
"sourceMap": true, |
|||
"declaration": false, |
|||
"module": "esnext", |
|||
"moduleResolution": "node", |
|||
"emitDecoratorMetadata": true, |
|||
"experimentalDecorators": true, |
|||
"allowSyntheticDefaultImports": true, |
|||
"importHelpers": true, |
|||
"target": "es5", |
|||
"jsx": "react", |
|||
"typeRoots": [ |
|||
"node_modules/@types", |
|||
"src/typings/rawloader.typings.d.ts", |
|||
"src/typings/jquery.typings.d.ts", |
|||
"src/typings/jquery.flot.typings.d.ts", |
|||
"src/typings/jquery.jstree.typings.d.ts", |
|||
"src/typings/split.js.typings.d.ts", |
|||
"src/typings/add-marker.d.ts", |
|||
"src/typings/leaflet-editable.d.ts" |
|||
], |
|||
"paths": { |
|||
"@app/*": ["src/app/*"], |
|||
"@env/*": [ |
|||
"src/environments/*" |
|||
], |
|||
"@core/*": ["src/app/core/*"], |
|||
"@modules/*": ["src/app/modules/*"], |
|||
"@shared/*": ["src/app/shared/*"], |
|||
"@home/*": ["src/app/modules/home/*"], |
|||
"jszip": [ |
|||
"node_modules/jszip/dist/jszip.min.js" |
|||
] |
|||
"files": [], |
|||
"references": [ |
|||
{ |
|||
"path": "./src/tsconfig.app.json" |
|||
}, |
|||
"lib": [ |
|||
"es2018", |
|||
"es2019", |
|||
"dom" |
|||
] |
|||
} |
|||
} |
|||
{ |
|||
"path": "./src/tsconfig.spec.json" |
|||
}, |
|||
{ |
|||
"path": "./e2e/tsconfig.e2e.json" |
|||
} |
|||
] |
|||
} |
|||
Loading…
Reference in new issue