Files
create-better-t-stack/apps/cli/templates/frontend/react/tanstack-router/tsconfig.json
2025-05-11 09:17:45 +05:30

22 lines
415 B
JSON

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"types": ["vite/client"],
"rootDirs": ["."],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [{
"path": "../server"
}]
}