2022-11-17 12:25:23 +00:00
|
|
|
{
|
2023-08-07 15:57:44 +00:00
|
|
|
"extends": "./tsconfig.extend.json",
|
|
|
|
"compilerOptions": {
|
2024-03-18 14:02:28 +00:00
|
|
|
"target": "ESNext",
|
2023-08-07 15:57:44 +00:00
|
|
|
"lib": ["es5", "dom", "dom.iterable", "esnext"],
|
|
|
|
"types": ["node"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
},
|
|
|
|
"include": ["src", "**/*.ts"]
|
|
|
|
}
|