Skip to content

Commit 0aa7704

Browse files
authored
Specify client library paths in tsconfig.json (#994)
1 parent 6b5e8ca commit 0aa7704

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

elisa/tsconfig.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"extends": "./node_modules/@labkey/build/webpack/tsconfig.json",
3+
"compilerOptions": {
4+
"paths": {
5+
// Point to the dist/lib folder where the .d.ts files are output
6+
"@labkey/api": ["../../../../clientAPIs/labkey-api-js/dist/index"],
7+
"@labkey/components": ["../../../../clientAPIs/labkey-ui-components/packages/components/dist/index"],
8+
"@labkey/premium": ["../../../../clientAPIs/labkey-ui-premium/dist/index"],
9+
},
10+
},
311
"include": ["src/client/**/*"],
4-
"exclude": ["node_modules"]
12+
"exclude": ["node_modules"],
513
}

0 commit comments

Comments
 (0)