mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
24 lines
599 B
JSON
24 lines
599 B
JSON
{
|
|
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019", "es2021"],
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2019",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"types": ["cypress"],
|
|
"paths": {
|
|
"~/*": ["./app/*"]
|
|
},
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
|
"noEmit": true
|
|
}
|
|
}
|