21 lines
504 B
JSON
21 lines
504 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx", ".react-router/types/**/*"],
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["@react-router/node", "vite/client"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["./app/*"]
|
|
}
|
|
}
|
|
}
|