forked from terraforming-mars/terraforming-mars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 945 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
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"module": "commonjs",
"lib": ["dom"],
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"strict": true,
"removeComments": true,
"preserveConstEnums": true,
"skipLibCheck": true,
"sourceMap": true,
"target": "es5",
"types": ["node"],
"moduleResolution": "node"
},
"include": [
"src/*.ts",
"src/components/*.ts",
"src/directives/*.ts",
"src/cards/*.ts",
"src/cards/corporation/*.ts",
"src/cards/prelude/*.ts",
"src/cards/venusNext/*.ts",
"src/cards/turmoil/*.ts",
"src/cards/promo/*.ts",
"src/cards/colonies/*.ts",
"src/inputs/*.ts",
"src/models/*.ts",
"src/colonies/*.ts",
"script.ts",
"server.ts",
"src/interrupts/*.ts",
"src/database/*.ts"
],
"files": [
"script.ts",
"server.ts"
]
}