- renamings to the new naming convetion for adonisjs version 6

- npm updates
This commit is contained in:
Kaimbacher 2024-04-29 11:25:50 +02:00
parent bee76f8d5b
commit a29865b781
53 changed files with 701 additions and 731 deletions

View file

@ -0,0 +1,26 @@
{
// tsconfig.vue.json
"extends": "@vue/tsconfig/tsconfig.json", // 0.4.0
// "include": ["./resources/js/**/*"],
"include": ["env.d.ts", "./**/*.ts", "./**/*.vue"],
"compilerOptions": {
// "module": "commonjs", //for tehys.api...alos nodenext
// Process & infer types from .js files.
"allowJs": true,
//javascript language version: Target latest version 'esnext' of ECMAScript or minimal 'es6'.
"target": "ESNext", //neu
// //what module code is generated
"module": "ESNext", //neu
"experimentalDecorators": true, //neu
"strictPropertyInitialization": false //neu
},
// "paths": {
// "App/*": ["./app/*"], // for App/modles/User
// "@/*": ["./resources/js/*"]
// },
"paths": {
"@/*": ["./*"],
"~/*": ["../*"]
},
// "files": ["./index.d.ts"]
}