2024-10-01 16:19:34 +05:00
|
|
|
{
|
|
|
|
|
"include": [
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
"**/*.tsx",
|
|
|
|
|
"**/.server/**/*.ts",
|
|
|
|
|
"**/.server/**/*.tsx",
|
|
|
|
|
"**/.client/**/*.ts",
|
|
|
|
|
"**/.client/**/*.tsx"
|
|
|
|
|
],
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
2024-11-24 15:18:38 +05:00
|
|
|
"types": ["vite/client", "vite-plugin-arraybuffer/types", "bun"],
|
2024-10-01 16:19:34 +05:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
// Vite takes care of building everything, not tsc.
|
|
|
|
|
"noEmit": true
|
|
|
|
|
}
|
|
|
|
|
}
|