forked from Azure/BatchExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
69 lines (69 loc) · 1.6 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
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": [
"dom",
"dom.iterable",
"es6",
"es2015",
"es2016",
"es2017"
],
"noImplicitThis": true,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitAny": false,
"moduleResolution": "node",
"listEmittedFiles": true, // debug option
"listFiles": true, // debug option
// Base Url only applies to typescript compilation so tsc knows where the modules are.
// This means absolute path only works in the browser environment you need to use relative import for the code in side the client folder
// Node.js doesn't support custom load path yet
"baseUrl": ".",
"noUnusedLocals": true,
"paths": {
// "app/*": [
// "app/*",
// ],
// "test/*": [
// "test/*",
// ],
"*": [
"src/*",
"*",
],
},
"types": [
"node",
"electron",
"jasmine",
"hammerjs"
],
"typeRoots": [
"node_modules/@types"
]
},
"files": [
"definitions/index.d.ts",
"node_modules/monaco-editor/monaco.d.ts"
],
// This is not actually used for building but to let the editor know what files use this config
"include": [
"app/**/*.ts",
"src/**/*.ts",
"test/**/*.ts",
"package.json",
],
"exclude": [
"**/testing/**/*",
],
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useCache": true,
"useWebpackText": true
},
}