forked from spinnaker/deck
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
76 lines (76 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
{
"buildOnSave": false,
"compileOnSave": true,
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "app/scripts/modules",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2017", "dom", "ES2018.Promise"],
"moduleResolution": "node",
"module": "esnext",
"noEmitHelpers": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": false, // should really get to a place where we can turn this on
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "transpiled",
"paths": {
"@spinnaker/core": ["core/src"],
"core/*": ["core/src/*"],
"core": ["core/src"],
"@spinnaker/docker": ["docker/src"],
"docker/*": ["docker/src/*"],
"docker": ["docker/src"],
"@spinnaker/amazon": ["amazon/src"],
"amazon/*": ["amazon/src/*"],
"amazon": ["amazon/src"],
"@spinnaker/google": ["google/src"],
"google/*": ["google/src/*"],
"google": ["google/src"],
"@spinnaker/appengine": ["appengine/src"],
"appengine/*": ["appengine/src/*"],
"appengine/": ["appengine/src"],
"@spinnaker/kubernetes": ["kubernetes/src"],
"kubernetes/*": ["kubernetes/src/*"],
"kubernetes/": ["kubernetes/src"],
"@spinnaker/oracle": ["oracle/src"],
"oracle/*": ["oracle/src/*"],
"oracle": ["oracle/src"],
"@spinnaker/cloudfoundry": ["cloudfoundry/src"],
"cloudfoundry/*": ["cloudfoundry/src/*"],
"cloudfoundry/": ["cloudfoundry/src"],
"@spinnaker/titus": ["titus/src"],
"titus/*": ["titus/src/*"],
"titus/": ["titus/src"],
"@spinnaker/huaweicloud": ["huaweicloud/src"],
"huaweicloud/*": ["huaweicloud/src/*"],
"huaweicloud": ["huaweicloud/src"],
"@spinnaker/tencentcloud": ["tencentcloud/src"],
"tencentcloud/*": ["tencentcloud/src/*"],
"tencentcloud": ["tencentcloud/src"],
"@spinnaker/azure": ["azure/src"],
"azure/*": ["azure/src/*"],
"azure": ["azure/src"],
"@spinnaker/ecs": ["ecs/src"],
"ecs/*": ["ecs/src/*"],
"ecs": ["ecs/src"],
"@spinnaker/cloudrun": ["cloudrun/src"],
"cloudrun/*": ["cloudrun/src/*"],
"cloudrun": ["cloudrun/src"],
},
"pretty": true,
"removeComments": false,
"rootDir": ".",
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": false, // should really get to a place where we can turn this on
"target": "es6",
"typeRoots": ["node_modules/@types"]
},
"exclude": ["build", "node", "node_modules", "transpiled", "**/*.stories.*"],
"include": ["app/scripts/modules/**/*.ts", "app/scripts/modules/**/*.tsx"]
}