-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (31 loc) · 893 Bytes
/
tsconfig.json
File metadata and controls
34 lines (31 loc) · 893 Bytes
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
{
"compilerOptions": {
"outDir": "./build/",
"sourceMap": true,
"noImplicitAny": false,
"lib": ["es2019", "dom"],
"moduleResolution": "node",
"module": "es6",
"target": "es5",
"esModuleInterop": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"allowJs": true,
"typeRoots" : [
"lib/OpenCircuits/site/public/ts/shared/utils/typings",
"node_modules/@types" // path to your typings directory (relative to tsconfig.json)
],
"baseUrl": ".",
"paths": {
"Vector": ["lib/OpenCircuits/app/core/ts/utils/math/Vector"],
"math/*": ["lib/OpenCircuits/app/core/ts/utils/math/*"],
"core/*": ["lib/OpenCircuits/app/core/ts/*"],
"fss/*": ["app/fss/ts/*"],
"site/shared/*": ["lib/OpenCircuits/site/public/ts/shared/*"],
"site/fss/*": ["site/public/ts/fss/*"]
}
},
"exclude": [
"node_modules"
]
}