tethys.backend/tsconfig.json

81 lines
1.7 KiB
JSON
Raw Normal View History

2024-03-14 19:25:27 +00:00
{
"extends": "@adonisjs/tsconfig/tsconfig.app.json",
"include": [
"**/*",
// "resources/**/*.ts",
// "resources/**/*.d.ts",
// "resources/**/*.vue"
2024-03-14 19:25:27 +00:00
],
"exclude": [
"node_modules",
"build",
"public",
"./resources/js/**/*.vue",
"./resources/js/**/*.ts"
2024-03-14 19:25:27 +00:00
],
// "exclude": ["./inertia/**/*"]
2024-03-14 19:25:27 +00:00
"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"
// ],
2024-03-14 19:25:27 +00:00
"#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"
]
2023-03-03 15:54:28 +00:00
},
2024-03-14 19:25:27 +00:00
"types": [
// "@eidellev/inertia-adonisjs",
// "naive-ui/volar"
]
2024-03-14 19:25:27 +00:00
},
"files": ["./index.d.ts"]
}