Add jsconfig.json

This commit is contained in:
Eric Lay 2026-03-11 08:31:42 -05:00
parent e55407bee1
commit d62088bd27
1 changed files with 21 additions and 0 deletions

21
jsconfig.json Normal file
View File

@ -0,0 +1,21 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["esnext", "dom"],
"target": "esnext",
"checkJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": []
},
"include": ["src/components/**/*.js", "src/pages/**/*.jsx", "src/Layout.jsx"],
"exclude": ["node_modules", "dist", "src/vite-plugins", "src/components/ui", "src/api", "src/lib"]
}