diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..3669526 --- /dev/null +++ b/jsconfig.json @@ -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"] +} \ No newline at end of file