forked from spinnaker/deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
51 lines (51 loc) · 1.7 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
{
"buildOnSave": false,
"compileOnSave": true,
"compilerOptions": {
"allowJs": false,
"baseUrl": "app/scripts/modules",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2016", "dom"],
"moduleResolution": "node",
"module": "commonjs",
"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"]
},
"pretty": true,
"removeComments": true,
"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"],
"include": ["test/helpers/custom-matchers.d.ts", "app/scripts/modules/**/*.ts", "app/scripts/modules/**/*.tsx"]
}