Skip to content

Commit

Permalink
fix: fix cspell-types (#3067)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jun 14, 2022
1 parent 257bdd7 commit 71a9fc7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"homepage": "https://streetsidesoftware.github.io/cspell/",
"devDependencies": {
"@cspell/eslint-plugin": "^6.1.2",
"@tsconfig/node12": "^1.0.10",
"@tsconfig/node14": "^1.0.2",
"@types/jest": "^28.1.1",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^5.28.0",
Expand Down
1 change: 1 addition & 0 deletions packages/cspell-lib/src/Settings/CSpellSettingsServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ function merge(
description: undefined,
globRoot: undefined,
import: undefined,
plugins: mergeList(_left.plugins, _right.plugins),
__imports: mergeImportRefs(_left, _right),
__importRef: undefined,
});
Expand Down
7 changes: 7 additions & 0 deletions packages/cspell-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@
},
"version": "6.1.2",
"description": "Types for cspell and cspell-lib",
"type": "commonjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/*"
],
"dist/index.d.ts": [
"dist/index.d.ts"
],
"index.d.ts": [
"dist/index.d.ts"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion tsconfig-base.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "CSpell Monorepo Base Config",
"extends": "@tsconfig/node12/tsconfig.json",
"extends": "@tsconfig/node14/tsconfig.json",
"compilerOptions": {
"alwaysStrict": true,
"declaration": true,
Expand Down

0 comments on commit 71a9fc7

Please sign in to comment.