1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 15:27:43 +01:00
openstamanager/tsconfig.json

32 lines
671 B
JSON
Raw Normal View History

{
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
},
"exclude": ["**/node_modules", "**/.*/"],
2022-01-06 17:19:59 +01:00
"include": [
"resources/js/**/*",
"vite.config.ts"
2022-01-06 17:19:59 +01:00
]
}