Skip to content

Commit 2155293

Browse files
authored
Merge pull request #39 from Sebobo/bugfix/type-issue
BUGFIX: Fix type error in CI build
2 parents 61c0d77 + ce99980 commit 2155293

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ node_modules
1515
packages/*/dist
1616
/parcel-bundle-reports
1717
*.d.ts
18-
!.global.d.ts
18+
!global.d.ts
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
type SearchNodeResult = {
2+
name: string;
3+
nodetype: string;
4+
contextPath: string;
5+
icon: string;
6+
uri: string;
7+
};
8+
9+
// The settings read from the `Neos.Neos.Ui.frontendConfiguration["Shel.Neos.CommandBar:CommandBar"]` configuration
10+
type CommandBarConfig = {
11+
enabled: boolean;
12+
features: {
13+
searchNeosDocs: boolean;
14+
searchNeosPackages: boolean;
15+
};
16+
hotkeys: {
17+
filter: string[];
18+
};
19+
};

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"name": "typescript-plugin-css-modules"
1414
}
1515
],
16-
"typeRoots": ["./packages/commandbar/src/typings"]
16+
"typeRoots": ["./packages/commandbar/src/typings", "./packages/neos-api/src/typings"]
1717
},
1818
"exclude": [
1919
"node_modules",

0 commit comments

Comments
 (0)