headplane/tsconfig.json

34 lines
686 B
JSON
Raw Normal View History

{
2024-03-25 17:50:58 -04:00
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx"
],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
2024-12-31 10:30:14 +05:30
"types": ["vite/client"],
2024-03-25 17:50:58 -04:00
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
2025-01-17 08:33:22 +00:00
"~/*": ["./app/*"],
"~server/*": ["./server/*"]
},
2025-01-17 08:33:22 +00:00
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}