2020-08-22 09:06:41 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-12-24 12:18:26 +03:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2023-05-27 12:36:18 +03:00
|
|
|
"types": ["vite/client", "vitest/globals"],
|
2020-08-22 09:06:41 +03:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2022-12-24 12:18:26 +03:00
|
|
|
"target": "esnext",
|
2020-08-22 09:06:41 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
2022-03-07 16:26:35 +03:00
|
|
|
"node_modules"
|
2020-08-22 09:06:41 +03:00
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"*.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx"
|
|
|
|
]
|
|
|
|
}
|