2022-05-11 22:47:31 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-20 05:11:41 +00:00
|
|
|
"target": "ES2020",
|
|
|
|
"useDefineForClassFields": true,
|
2022-05-11 22:47:31 +00:00
|
|
|
"lib": [
|
2023-07-20 05:11:41 +00:00
|
|
|
"ES2020",
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable"
|
2022-05-11 22:47:31 +00:00
|
|
|
],
|
2023-07-20 05:11:41 +00:00
|
|
|
"module": "ESNext",
|
2022-05-11 22:47:31 +00:00
|
|
|
"skipLibCheck": true,
|
2023-07-20 05:11:41 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
2022-05-11 22:47:31 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx",
|
2023-07-20 05:11:41 +00:00
|
|
|
/* Linting */
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2022-05-11 22:47:31 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2023-07-20 05:11:41 +00:00
|
|
|
"paths": {
|
|
|
|
"src/*": [
|
|
|
|
"./src/*"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
"vite/client"
|
|
|
|
]
|
2022-05-11 22:47:31 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
2023-07-20 05:11:41 +00:00
|
|
|
],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
2022-05-11 22:47:31 +00:00
|
|
|
]
|
2023-03-07 06:42:26 +00:00
|
|
|
}
|