27 lines
675 B
JSON
27 lines
675 B
JSON
{
|
|
"include": ["env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"~/components/*": ["./app/components/*"],
|
|
"~/utils/*": ["./app/utils/*"],
|
|
},
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
|
"noEmit": true
|
|
}
|
|
}
|