-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
executable file
·52 lines (52 loc) · 996 Bytes
/
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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"declaration": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"allowJs": false,
"jsx": "react",
"experimentalDecorators": true,
"rootDirs": [
"src"
, ".config-ts"
, "test"
],
"outDir": "ts_processed",
"lib": [
"webworker"
,"es6"
,"scripthost"
]
},
"filesGlob": [
".config-ts/*.ts",
"test/*.ts",
"src/*.ts",
"src/*.tsx",
"src/**/*.ts",
"src/**/*.tsx",
"node_modules/**/*.d.ts"
],
"exclude": [
"storybook-ts",
"docs", "docs_src",
"docs_ts_processed",
"node_modules",
"!node_modules/rxjs",
"reactive-konva",
"reactive-konva.d.ts",
"tools",
"lib",
"lib_es6",
"examples",
"src_old",
"webpack",
"types"
],
"compileOnSave": false,
"typescript.tsdk": "./node_modules/typescript/lib"
}