mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-29 02:48:24 +00:00
39 lines
721 B
JSON
39 lines
721 B
JSON
{
|
|
"extends": "../../configs/tsconfig-base",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"dummy/tests/*": [
|
|
"tests/*"
|
|
],
|
|
"dummy/*": [
|
|
"tests/dummy/app/*",
|
|
"app/*"
|
|
],
|
|
"@datahub/entity-header": [
|
|
"addon"
|
|
],
|
|
"@datahub/entity-header/*": [
|
|
"addon/*"
|
|
],
|
|
"@datahub/entity-header/test-support": [
|
|
"addon-test-support"
|
|
],
|
|
"@datahub/entity-header/test-support/*": [
|
|
"addon-test-support/*"
|
|
],
|
|
"*": [
|
|
"types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"app/**/*",
|
|
"addon/**/*",
|
|
"tests/**/*",
|
|
"types/**/*",
|
|
"test-support/**/*",
|
|
"addon-test-support/**/*"
|
|
]
|
|
}
|