75 lines
1.4 KiB
JSON
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"]
|
|
} |