sendou.ink/tsconfig.json
Kalle a8a42797e5 Exclude scripts from main typecheck
The dicts might or might not exist. The new command can be ran
when the dicts do exist.
2026-04-26 17:53:13 +03:00

37 lines
869 B
JSON

{
"include": [
"./types/**/*.d.ts",
"**/*.ts",
"**/*.tsx",
".react-router/types/**/*"
],
"exclude": ["scripts/**/*"],
"compilerOptions": {
"types": ["@react-router/node", "vite/client"],
"rootDirs": [".", "./.react-router/types"],
"lib": ["DOM", "DOM.Iterable", "es2024"],
"module": "ESNext",
"isolatedModules": true,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"paths": {
"~/*": ["./app/*"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"skipLibCheck": true
}
}