25 lines
601 B
JSON
Raw Normal View History

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": {
"noImplicitAny": false,
"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",
"strict": false,
2023-06-23 03:59:14 +00:00
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./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
}