forked from geolba/tethys.backend
- update to AdonisJS 6
This commit is contained in:
parent
f828ca4491
commit
cb51a4136f
167 changed files with 21485 additions and 21212 deletions
139
tsconfig.json
139
tsconfig.json
|
@ -1,68 +1,75 @@
|
|||
{
|
||||
"extends": "adonis-preset-ts/tsconfig.json",
|
||||
"include": [
|
||||
// "**/*",
|
||||
"**/*"
|
||||
// "./resources/js/**/*"
|
||||
// "./resources/js/**/*.vue",
|
||||
// "./resources/js/**/*.ts",
|
||||
// "./resources/js/**/*.vue",
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"build",
|
||||
"public"
|
||||
// "src/**/js/*.js"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"outDir": "build",
|
||||
"rootDir": "./",
|
||||
"sourceMap": true,
|
||||
// "moduleResolution": "node", //neu
|
||||
"experimentalDecorators": true, //neu
|
||||
"strictPropertyInitialization": false, //neu
|
||||
// Target latest language version 'esnext' of ECMAScript or minimal 'es6'.
|
||||
"target": "esnext", //neu
|
||||
//what module code is generated
|
||||
// "module": "NodeNext", //neu
|
||||
"skipLibCheck": true, //neu
|
||||
"esModuleInterop": true, //neu
|
||||
"allowSyntheticDefaultImports": true, //neu,
|
||||
"paths": {
|
||||
"App/*": [
|
||||
"./app/*"
|
||||
],
|
||||
"Config/*": [
|
||||
"./config/*"
|
||||
],
|
||||
"Contracts/*": [
|
||||
"./contracts/*"
|
||||
],
|
||||
"Database/*": [
|
||||
"./database/*"
|
||||
],
|
||||
// "@/*": ["./resources/js/"],
|
||||
"@/*": [
|
||||
"./resources/js/*"
|
||||
]
|
||||
// "vue$": ["vue/dist/vue.runtime.esm-bundler.js"],
|
||||
},
|
||||
"types": [
|
||||
"@adonisjs/core",
|
||||
"@adonisjs/repl",
|
||||
"@adonisjs/session",
|
||||
"@adonisjs/view",
|
||||
"@adonisjs/shield",
|
||||
"@japa/preset-adonis/build/adonis-typings",
|
||||
"@eidellev/inertia-adonisjs",
|
||||
"naive-ui/volar",
|
||||
"@adonisjs/lucid",
|
||||
"@adonisjs/auth",
|
||||
"@adonisjs/redis"
|
||||
]
|
||||
{
|
||||
"extends": "@adonisjs/tsconfig/tsconfig.app.json",
|
||||
"include": [
|
||||
"**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"build",
|
||||
"public",
|
||||
"resources"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"outDir": "build",
|
||||
"rootDir": "./",
|
||||
"sourceMap": true,
|
||||
"experimentalDecorators": true,
|
||||
"strictPropertyInitialization": false,
|
||||
"target": "esnext",
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"./resources/js/*"
|
||||
],
|
||||
"#controllers/*": [
|
||||
"./app/controllers/*.js"
|
||||
],
|
||||
"#exceptions/*": [
|
||||
"./app/exceptions/*.js"
|
||||
],
|
||||
"#models/*": [
|
||||
"./app/models/*.js"
|
||||
],
|
||||
"#services/*": [
|
||||
"./app/services/*.js"
|
||||
],
|
||||
"#listeners/*": [
|
||||
"./app/listeners/*.js"
|
||||
],
|
||||
"#events/*": [
|
||||
"./app/events/*.js"
|
||||
],
|
||||
"#middleware/*": [
|
||||
"./app/middleware/*.js"
|
||||
],
|
||||
"#validators/*": [
|
||||
"./app/validators/*.js"
|
||||
],
|
||||
|
||||
"#start/*": [
|
||||
"./start/*.js"
|
||||
],
|
||||
"#config/*": [
|
||||
"./config/*.js"
|
||||
],
|
||||
"#app/*": [
|
||||
"./app/*.js"
|
||||
],
|
||||
"#database/*": [
|
||||
"./database/*.js"
|
||||
],
|
||||
"#contracts/*": [
|
||||
"./contracts/*.js"
|
||||
]
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts"
|
||||
"types": [
|
||||
// "@eidellev/inertia-adonisjs",
|
||||
"naive-ui/volar"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
"files": ["./index.d.ts"]
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue