2023-11-10 13:34:04 +00:00
|
|
|
{
|
2023-12-18 03:18:17 +00:00
|
|
|
"include": [
|
2023-12-22 20:35:40 +00:00
|
|
|
"env.d.ts",
|
2023-12-18 03:18:17 +00:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx"
|
|
|
|
],
|
2023-11-29 23:07:31 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
2023-12-18 03:18:17 +00:00
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ES2022"
|
2023-11-29 23:07:31 +00:00
|
|
|
],
|
2023-12-18 03:18:17 +00:00
|
|
|
"isolatedModules": true,
|
2023-11-29 23:07:31 +00:00
|
|
|
"esModuleInterop": true,
|
2023-12-18 03:18:17 +00:00
|
|
|
"jsx": "react-jsx",
|
2023-11-29 23:07:31 +00:00
|
|
|
"resolveJsonModule": true,
|
2023-12-22 20:35:40 +00:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
2023-12-18 03:18:17 +00:00
|
|
|
"target": "ES2022",
|
|
|
|
"strict": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"baseUrl": ".",
|
2023-11-29 23:07:31 +00:00
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
2023-12-18 03:18:17 +00:00
|
|
|
"./app/*"
|
|
|
|
],
|
|
|
|
"~/*": [
|
|
|
|
"./app/*"
|
2023-11-29 23:07:31 +00:00
|
|
|
]
|
2023-12-18 03:18:17 +00:00
|
|
|
},
|
|
|
|
// Remix takes care of building everything in `remix build`.
|
2023-12-27 15:18:07 +00:00
|
|
|
"noEmit": true,
|
|
|
|
"types": ["unplugin-fonts/client"]
|
2023-12-18 03:18:17 +00:00
|
|
|
}
|
2023-11-10 13:34:04 +00:00
|
|
|
}
|