pollo/tsconfig.json

24 lines
562 B
JSON
Raw Normal View History

2023-04-20 04:20:00 -06:00
{
2023-12-15 10:44:20 -07:00
"include": ["env.d.ts", "**/*.ts", "**/*.tsx"],
2023-04-20 04:20:00 -06:00
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ESNext",
2023-12-19 16:12:10 -07:00
"module": "ESNext",
2023-04-20 04:20:00 -06:00
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
// Remix takes care of building everything in `remix build`.
"noEmit": true
}
}