mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-22 02:14:41 -05:00
33 lines
835 B
JSON
33 lines
835 B
JSON
{
|
|
"include": ["./types/env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
|
"module": "ESNext",
|
|
"isolatedModules": 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,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true
|
|
}
|
|
}
|