2023-02-27 08:55:07 +00:00
|
|
|
{
|
2023-06-23 03:59:14 +00:00
|
|
|
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
|
2023-02-27 08:55:07 +00:00
|
|
|
"compilerOptions": {
|
2023-07-01 09:46:36 +00:00
|
|
|
"noImplicitAny": false,
|
2023-08-09 03:34:18 +00:00
|
|
|
"strictNullChecks": false,
|
2023-06-23 03:59:14 +00:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ES2019"],
|
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
2023-06-18 23:54:49 +00:00
|
|
|
"jsx": "react-jsx",
|
2023-06-23 03:59:14 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "ES2019",
|
2023-08-09 03:13:46 +00:00
|
|
|
"strict": false,
|
2023-06-23 03:59:14 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2024-04-29 10:44:09 +00:00
|
|
|
"~/*": ["./app/*"]
|
2023-06-18 23:54:49 +00:00
|
|
|
},
|
2023-06-23 03:59:14 +00:00
|
|
|
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
|
|
|
"noEmit": true
|
|
|
|
}
|
2023-02-27 08:55:07 +00:00
|
|
|
}
|