tethys.backend/tsconfig.vue.json

18 lines
396 B
JSON
Raw Normal View History

2023-03-03 15:54:28 +00:00
{
// tsconfig.vue.json
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"./resources/js/**/*"
],
"compilerOptions": {
"allowJs": true,
"paths": {
"@/*": ["./resources/js/*"]
},
"experimentalDecorators": true,//neu
"strictPropertyInitialization": false, //neu
},
"files": [
"./index.d.ts",
]
}