mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
34 lines
871 B
JSON
34 lines
871 B
JSON
{
|
|
"include": ["./types/remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["discord-bot/*"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
|
"types": ["cypress"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
}
|
|
}
|