33 lines
605 B
JSON
33 lines
605 B
JSON
{
|
|
"extends": "@tooling/tsconfig/base",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declarationDir": "./dist",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vue/macros",
|
|
],
|
|
"paths": {
|
|
"~/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
// Transform paths in output .d.ts files (Include this line if you output declarations files)
|
|
{
|
|
"transform": "typescript-transform-paths",
|
|
"afterDeclarations": true
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"./src"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|