BillTracker/jsconfig.json

15 lines
283 B
JSON
Raw Permalink Normal View History

2026-05-03 19:51:57 -05:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./client/*"]
},
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true
},
"include": ["client/**/*"],
"exclude": ["node_modules", "dist"]
}