23 lines
442 B
JSON
23 lines
442 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": [
|
|
"env.d.ts",
|
|
"typed-router.d.ts",
|
|
"src/**/*",
|
|
"src/**/*.vue",
|
|
"../web-core/lib/**/*",
|
|
"../web-core/lib/**/*.vue"
|
|
],
|
|
"exclude": ["src/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"rootDir": "..",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@core/*": ["../web-core/lib/*"]
|
|
}
|
|
}
|
|
}
|