tethys.backend/tsconfig.json
Arno Kaimbacher bee76f8d5b
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m13s
- npm added @japa/api-client, @japa/assert, @types/supertest
- webpack added opions['__VUE_PROD_HYDRATION_MISMATCH_DETAILS__'] = false;
- bodyparser config replaced whitelistedMethods with allowedMethods
- extended stardust_provider
- adapted tests for adonisjs v6
2024-04-25 15:17:22 +02:00

81 lines
1.7 KiB
JSON

{
"extends": "@adonisjs/tsconfig/tsconfig.app.json",
"include": [
"**/*",
// "resources/**/*.ts",
// "resources/**/*.d.ts",
// "resources/**/*.vue"
],
"exclude": [
"node_modules",
"build",
"public",
"./resources/js/**/*.vue",
"./resources/js/**/*.ts"
],
// "exclude": ["./inertia/**/*"]
"compilerOptions": {
"allowJs": true,
"outDir": "build",
"rootDir": "./",
"sourceMap": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"target": "esnext",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"paths": {
// "@/*": ["./resources/js/*.js"],
// "#resources/*": [
// "./resources/js/*.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"]
}