xnl-admin/tsconfig.json

33 lines
844 B
JSON
Raw Normal View History

2024-09-06 09:44:02 +02:00
{
2024-09-06 12:28:50 +02:00
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx"
],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"types": ["@remix-run/node", "vite/client"],
"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": {
"~/*": ["./app/*"]
},
2024-09-06 09:44:02 +02:00
2024-09-06 12:28:50 +02:00
// Vite takes care of building everything, not tsc.
"noEmit": true
}
2024-09-06 09:44:02 +02:00
}