pollo/tsconfig.json

23 lines
544 B
JSON
Raw Normal View History

2023-04-20 04:20:00 -06:00
{
2023-11-21 16:05:53 -07:00
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
2023-04-20 04:20:00 -06:00
"compilerOptions": {
2023-11-21 16:05:53 -07:00
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"isolatedModules": true,
2023-04-20 04:20:00 -06:00
"esModuleInterop": true,
2023-11-21 16:05:53 -07:00
"jsx": "react-jsx",
"moduleResolution": "Bundler",
2023-04-20 04:20:00 -06:00
"resolveJsonModule": true,
2023-11-21 16:05:53 -07:00
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
2023-04-20 04:20:00 -06:00
"baseUrl": ".",
"paths": {
2023-11-21 16:05:53 -07:00
"~/*": ["./app/*"]
2023-08-27 23:57:17 -06:00
},
2023-11-21 16:05:53 -07:00
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
2023-04-20 04:20:00 -06:00
}