ecommerce-template/apps/remix-template/tsconfig.json

17 lines
411 B
JSON

{
"include": ["**/*.ts", "**/*.tsx"],
"extends": "@repo/typescript-config/remix.json",
"compilerOptions": {
"types": ["@vercel/remix", "vite/client"],
"module": "ESNext",
"skipLibCheck": true,
"paths": {
"~/*": ["./app/*"],
"@repo/ui/*": ["../../packages/ui/src/*"],
"@repo/db/*": ["../../packages/db/src/*"]
},
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}