2024-07-10 16:44:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
2024-12-04 18:31:42 +00:00
|
|
|
"types": ["@remix-run/cloudflare", "vite/client", "@cloudflare/workers-types/2023-07-01", "@types/dom-speech-recognition"],
|
2024-07-10 16:44:39 +00:00
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"strict": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"~/*": ["./app/*"]
|
|
|
|
},
|
|
|
|
|
|
|
|
// vite takes care of building everything, not tsc
|
|
|
|
"noEmit": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
"**/.server/**/*.ts",
|
|
|
|
"**/.server/**/*.tsx",
|
|
|
|
"**/.client/**/*.ts",
|
|
|
|
"**/.client/**/*.tsx"
|
|
|
|
]
|
|
|
|
}
|