forked from Azure/BatchExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
49 lines (49 loc) · 1.01 KB
/
tsconfig.node.json
File metadata and controls
49 lines (49 loc) · 1.01 KB
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
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"lib": [
"dom",
"dom.iterable",
"es6",
"es2015",
"es2016",
"es2017"
],
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitThis": true,
"noImplicitAny": false,
"moduleResolution": "node",
"listEmittedFiles": false, // debug option
"listFiles": false, // debug option
"outDir": "build",
"baseUrl": ".",
"paths": {
"*": [
"src/*"
]
},
"types": [
"node",
"electron",
"jasmine",
"hammerjs",
"moment-duration-format"
],
"typeRoots": [
"./node_modules/@types"
]
},
"files": [
"./definitions/index.d.ts"
],
// This is not actually used for building but to let the editor know what files use this config
"include": [
"./src/client/**/*.ts",
"./src/common/**/*.ts"
]
}