-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.26 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"compilerOptions": {
"declaration": true,
"diagnostics": true,
"rootDir": "src",
"experimentalDecorators": true,
"outDir": "out",
"module": "commonjs",
"noImplicitAny": true,
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"alwaysStrict": true,
"strictPropertyInitialization": true,
"target": "es5",
"lib": [
"es2019",
"dom"
],
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"gtools/utils": ["./src/utils"],
"gtools/math": ["./src/math"],
"gtools/errors": ["./src/errors"],
"gtools/enums": ["./src/enums"],
"gtools/models": ["./src/models"],
"gtools/types": ["./src/types"],
"gtools/physics": ["./src/physics"],
"gtools/components": ["./src/components"]
},
"incremental": true,
"sourceMap": true,
"removeComments": true
},
"jsdoc": "out"
}