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": [
|
|
|
|
"vite-plugin-pwa/client"
|
|
|
|
],
|
2022-01-13 18:16:04 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"/images/logo_completo.png": ["resources/static/images/logo_completo.png"]
|
|
|
|
}
|
2022-01-06 17:19:59 +01:00
|
|
|
},
|
2022-01-10 17:18:58 +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-24 21:05:23 +01:00
|
|
|
"gulpfile.ts",
|
2022-01-06 18:14:13 +01:00
|
|
|
"vite.config.ts"
|
2022-01-24 21:05:23 +01:00
|
|
|
],
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
|
|
|
}
|
2022-01-06 15:45:35 +01:00
|
|
|
}
|