forked from terraforming-mars/terraforming-mars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (30 loc) · 867 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
// A base configuration for src and tests, and also the config
// Visual Studio Code reads
{
// Compiler options are mostly for the sub-configurations
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"lib": ["dom"],
"incremental": true,
"module": "commonjs",
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"preserveConstEnums": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es5",
"types": ["node"],
"moduleResolution": "node",
"resolveJsonModule": true,
"allowUnreachableCode": false,
},
// This gives the VS Code IDE its magic.
"include": [
"**/*.ts",
]
}