Add jsconfig.json
This commit is contained in:
parent
e55407bee1
commit
d62088bd27
|
|
@ -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"]
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue