forked from Azure/BatchExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
62 lines (60 loc) · 1.47 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
{
"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": false, // debug option
"listFiles": false, // 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": ".",
// Defer TS checking to ESLint
"noUnusedLocals": false,
"strict": false,
"strictNullChecks": false,
"paths": {
"*": [
"src/*",
],
},
"types": [
"node",
"electron",
"jasmine",
"hammerjs"
],
"typeRoots": [
"node_modules/@types"
],
},
"files": [
"definitions/index.d.ts",
"definitions/missing-defs.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": [
"src/**/*.ts",
"test/**/*.ts",
"package.json",
],
"exclude": [
"**/testing/**/*",
]
}