mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
- Config file di Vite mancante - Includi solo `resources/js/*` e non anche le altre cartelle dentro `resources`
29 lines
542 B
JSON
29 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pwa/client"
|
|
],
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"resources/js/*",
|
|
"vite.config.ts"
|
|
]
|
|
}
|