mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
41 lines
870 B
JSON
41 lines
870 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"vueCompilerOptions": {
|
|
"target": 2.7
|
|
},
|
|
"compilerOptions": {
|
|
"rootDirs": [
|
|
"src", "src-commercial", "tests"
|
|
],
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"jest"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@shared/*": ["./src/shared/*"],
|
|
"@commercial/*": ["./src-commercial/*"],
|
|
"@tests/*": ["./tests/*"],
|
|
"@bksLogger": ["./src/lib/log/bksLogger.ts"],
|
|
"@beekeeperstudio/ui-kit": ["../ui-kit/dist"],
|
|
"@beekeeperstudio/ui-kit/*": ["../ui-kit/dist/*"]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
|
|
"exclude": [
|
|
"node_modules", "dist", "dist_electron"
|
|
],
|
|
"sourceMapPathOverrides": {
|
|
"src/*": "${webRoot}/apps/studio/src/*"
|
|
}
|
|
}
|