mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 06:00:19 +00:00
39 lines
876 B
JSON
39 lines
876 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"types": [
|
|
"@remix-run/cloudflare",
|
|
"vite/client",
|
|
"@cloudflare/workers-types/2023-07-01",
|
|
"@types/dom-speech-recognition"
|
|
],
|
|
"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"
|
|
]
|
|
}
|