2021-10-13 08:02:10 +02:00
|
|
|
{
|
2022-01-06 17:19:59 +01:00
|
|
|
"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": [
|
2022-01-26 16:24:20 +01:00
|
|
|
"vite/client",
|
2022-01-06 17:19:59 +01:00
|
|
|
"vite-plugin-pwa/client"
|
|
|
|
],
|
2022-01-13 18:16:04 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2022-03-02 20:20:20 +01:00
|
|
|
"@openstamanager/images/*": [
|
|
|
|
"public/images/*"
|
2022-01-26 16:24:20 +01:00
|
|
|
],
|
|
|
|
"@openstamanager/scss/*": [
|
|
|
|
"resources/scss/*"
|
|
|
|
]
|
2022-01-13 18:16:04 +01:00
|
|
|
}
|
2022-01-06 17:19:59 +01:00
|
|
|
},
|
2022-01-26 16:24:20 +01:00
|
|
|
"exclude": [
|
|
|
|
"**/node_modules",
|
|
|
|
"**/.*/"
|
|
|
|
],
|
2022-01-06 17:19:59 +01:00
|
|
|
"include": [
|
2022-01-10 17:18:58 +01:00
|
|
|
"resources/js/**/*",
|
2022-01-06 18:14:13 +01:00
|
|
|
"vite.config.ts"
|
2022-03-02 20:20:20 +01:00
|
|
|
]
|
|
|
|
}
|