19 lines
379 B
JSON
19 lines
379 B
JSON
{
|
|
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"module": "ESNext",
|
|
"jsxImportSource": "vue",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@generated/*": ["../.adonisjs/client/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.vue",
|
|
"../.adonisjs/client/**/*.ts",
|
|
"../.adonisjs/server/**/*.ts"
|
|
]
|
|
}
|