vat_wms/tsconfig.json
2025-05-13 12:32:55 +02:00

22 lines
525 B
JSON

{
"include": ["resources/js/**/*"],
"exclude": ["node_modules", "public/build"],
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"noEmit": true,
"moduleResolution": "node",
"jsx": "react-jsx",
"rootDir": "./resources/js",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": ["./resources/js/*"],
"react": ["./node_modules/@types/react"]
},
"types": ["vite/client"]
}
}