forked from intershop/intershop-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.32 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./node_modules/.out-tsc/base",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
// leave this as CommonJS, so scripts can be run with 'npx ts-node'
// see https://github.com/TypeStrong/ts-node#import-statements
"module": "CommonJS",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"paths": {
"ish-core/*": ["src/app/core/*"],
"ish-shared/*": ["src/app/shared/*"],
"ish-shell/*": ["src/app/shell/*"],
"organization-management": [
"projects/organization-management/src/app/exports"
],
"requisition-management": [
"projects/requisition-management/src/app/exports"
]
},
"lib": ["es2018", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"plugins": [
{
"name": "typescript-tslint-plugin",
"alwaysShowRuleFailuresAsWarnings": true,
"ignoreDefinitionFiles": true,
"configFile": "tslint.json",
"suppressWhileTypeErrorsPresent": true
}
]
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"strictInjectionParameters": true
}
}