2021-12-08 19:22:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-01-20 20:23:17 +00:00
|
|
|
"module": "commonjs",
|
2021-12-08 19:22:39 +00:00
|
|
|
"noImplicitAny": true,
|
2022-01-20 20:23:17 +00:00
|
|
|
"target": "es6",
|
2021-12-10 20:36:42 +00:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
2022-07-22 06:21:47 +00:00
|
|
|
"noLib": true,
|
2021-12-10 20:36:42 +00:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2022-07-19 07:49:47 +00:00
|
|
|
"strict": true,
|
2022-07-27 15:48:12 +00:00
|
|
|
"typeRoots": ["./typescript/types"]
|
2021-12-10 20:19:01 +00:00
|
|
|
},
|
2022-11-07 13:35:06 +00:00
|
|
|
"include": ["./**/*"],
|
|
|
|
"exclude": [
|
|
|
|
"**/gpconv.d.ts",
|
|
|
|
"**/gpconv_bg.wasm.d.ts"
|
|
|
|
]
|
2021-12-08 19:22:39 +00:00
|
|
|
}
|