Skip to content

Commit

Permalink
fix: missing type root
Browse files Browse the repository at this point in the history
  • Loading branch information
steveblue committed Nov 1, 2024
1 parent f7c05ec commit d755620
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"builder": "@storybook/angular:start-storybook",
"options": {
"configDir": "projects/swimlane/ngx-graph/.storybook",
"tsConfig": "tsconfig.json",
"tsConfig": "projects/swimlane/ngx-graph/.storybook/tsconfig.json",
"browserTarget": "@swimlane/ngx-graph:build",
"compodoc": true,
"compodocArgs": ["-e", "json", "-d", ".", "projects/swimlane/ngx-graph"],
Expand All @@ -51,7 +51,7 @@
"builder": "@storybook/angular:build-storybook",
"options": {
"configDir": "projects/swimlane/ngx-graph/.storybook",
"tsConfig": "tsconfig.json",
"tsConfig": "projects/swimlane/ngx-graph/.storybook/tsconfig.json",
"browserTarget": "@swimlane/ngx-graph:build",
"compodoc": true,
"compodocArgs": ["-e", "json", "-d", ".", "projects/swimlane/ngx-graph"],
Expand Down
4 changes: 2 additions & 2 deletions projects/swimlane/ngx-graph/.storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": "../tsconfig.lib.json",
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"types": ["node"],
"typeRoots": ["node_modules/@types"],
"typeRoots": ["../../../../node_modules/@types"],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
Expand Down

0 comments on commit d755620

Please sign in to comment.