mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 09:54:36 -05:00
37 lines
857 B
JSON
37 lines
857 B
JSON
{
|
|
"include": [
|
|
"./types/**/*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".react-router/types/**/*"
|
|
],
|
|
"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,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|