forked from Azure/BatchExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.node.json
42 lines (42 loc) · 930 Bytes
/
tsconfig.node.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
{
"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": true, // debug option
"listFiles": true, // debug option
"outDir": "build/client",
"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"
]
}