-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 1.02 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
{
"compilerOptions": {
"target": "ES6",
"noErrorTruncation": true,
"importHelpers": false,
"removeComments": true,
"module": "esnext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"allowUnreachableCode": false,
"noImplicitAny": false,
"sourceMap": true,
"strictPropertyInitialization": false,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"incremental": true,
"noImplicitReturns": true,
"baseUrl": "./src/scripts",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"rootDir": "./",
"lib": ["dom", "esnext"],
"types": ["phaser"],
"paths": {
"src/*": ["../*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}