-
Notifications
You must be signed in to change notification settings - Fork 261
/
tsconfig.json
43 lines (43 loc) · 1.06 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
{
"compilerOptions": {
"target": "es2017",
"alwaysStrict": true,
"downlevelIteration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"useUnknownInCatchVariables": true,
"useDefineForClassFields": false,
"resolveJsonModule": true,
"lib": [
"es2017",
"es2019.array",
"es2021.string",
"esnext.BigInt",
"dom"
],
"sourceMap": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"types": [
"gl-matrix",
"webxr"
]
},
"include": [
"./src/",
"node_modules/@webgpu/types"
],
"exclude": [
"**/assembly/*.ts",
"**/worker/*.ts",
"**/tools/*.ts",
"*.wasm"
]
}