2021-03-22 14:29:03 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-23 15:01:52 -08:00
|
|
|
"target": "ESNext",
|
2021-03-22 14:29:03 -07:00
|
|
|
"lib": [
|
2022-02-23 15:01:52 -08:00
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ESNext"
|
2021-03-22 14:29:03 -07:00
|
|
|
],
|
2022-02-23 15:01:52 -08:00
|
|
|
"allowJs": false,
|
2021-03-22 14:29:03 -07:00
|
|
|
"skipLibCheck": true,
|
2022-02-23 15:01:52 -08:00
|
|
|
"esModuleInterop": false,
|
2021-03-22 14:29:03 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-02-23 15:01:52 -08:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
2021-03-22 14:29:03 -07:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-07-17 11:55:10 -07:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"incremental": false,
|
2023-02-07 14:35:49 -08:00
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"noUnusedLocals": true,
|
2023-08-06 04:20:08 -07:00
|
|
|
"noUnusedParameters": true
|
2021-03-22 14:29:03 -07:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
2022-02-23 15:01:52 -08:00
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
|
|
|
]
|
2021-03-22 14:29:03 -07:00
|
|
|
}
|