tethys.backend/tsconfig.json
Arno Kaimbacher cb51a4136f
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m15s
- update to AdonisJS 6
2024-03-14 20:25:27 +01:00

75 lines
1.4 KiB
JSON

{
"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"
]
},
"types": [
// "@eidellev/inertia-adonisjs",
"naive-ui/volar"
]
},
"files": ["./index.d.ts"]
}