-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
66 lines (66 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compileOnSave": false,
"compilerOptions": {
"alwaysStrict": true,
"baseUrl": "./",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"skipLibCheck": true,
"lib": ["es2018", "dom"],
"module": "ESNext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "./dist/out-tsc",
"paths": {
"@ws-widget/resolver": ["library/ws-widget/resolver"],
"@ws-widget/resolver/*": ["library/ws-widget/resolver/*"],
"@ws-widget/collection": ["library/ws-widget/collection"],
"@ws-widget/collection/*": ["library/ws-widget/collection/*"],
// "@ws-widget/utils": ["library/ws-widget/utils"],
"@ws-widget/utils": ["library/ws-widget/utils/src/public-api.ts"],
"@ws-widget/utils/*": ["library/ws-widget/utils/*"],
"@ws/app": ["project/ws/app"],
"@ws/app/*": ["project/ws/app/*"],
"@ws/author": ["project/ws/author"],
"@ws/author/*": ["project/ws/author/*"],
"@ws/admin": ["project/ws/admin"],
"@ws/admin/*": ["project/ws/admin/*"],
"@ws/analytics": ["project/ws/analytics"],
"@ws/analytics/*": ["project/ws/analytics/*"],
"@ws/viewer": ["project/ws/viewer"],
"@ws/viewer/*": ["project/ws/viewer/*"],
"@ws/learning-hub": ["project/ws/learning-hub"],
"@ws/learning-hub/*": ["project/ws/learning-hub/*"]
},
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "es2015",
"typeRoots": ["node_modules/@types", "./custom_typings"],
"plugins": [
{
"name": "@angular/language-service"
},
{
"name": "typescript-tslint-plugin",
"alwaysShowRuleFailuresAsWarnings": false,
"ignoreDefinitionFiles": true,
"configFile": "./tslint.json",
"suppressWhileTypeErrorsPresent": false
}
]
}
}