21 lines
668 B
JSON
21 lines
668 B
JSON
{
|
|
"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", "src/api/Client.js", "src/components/common/offlineStorage.jsx"],
|
|
"exclude": ["node_modules", "dist", "src/vite-plugins", "src/components/ui", "src/api", "src/lib"]
|
|
} |