BillTracker/jsconfig.json

16 lines
316 B
JSON
Raw Normal View History

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