Skip to content

Commit

Permalink
Slintpad: Fix failing typecsript build by removing unused json-schema…
Browse files Browse the repository at this point in the history
… type declaration requirement

It's not needed for the tsc build but was brought in through an implicit
dependency.
  • Loading branch information
tronical committed May 14, 2024
1 parent f63523f commit 28c6b8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/slintpad/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../tsconfig.default.json",
"compilerOptions": {
"lib": ["dom", "es2021"],
"types": ["json-schema", "vscode"]
"types": ["vscode"]
},
"include": ["./*.ts", "./shared/*.ts", "../package.json", "./welcome/*.ts"],
"references": [
Expand Down
2 changes: 1 addition & 1 deletion tools/slintpad/src/worker/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.default.json",
"compilerOptions": {
"lib": ["webworker", "es6"],
"types": ["json-schema", "vscode"]
"types": ["vscode"]
},
"include": ["./*.mjs", "./*.ts"]
}

0 comments on commit 28c6b8d

Please sign in to comment.