Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,961 changes: 1,361 additions & 1,600 deletions common/config/rush/npm-shrinkwrap.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions eslint-ts-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,21 @@
"dependencies": {
"@nevware21/ts-utils": ">= 0.11.3 < 2.x",
"@nevware21/ts-async": ">= 0.5.2 < 2.x",
"eslint-formatter-codeframe": "^7.32.1"
"eslint-formatter-codeframe": "^7.32.1",
"tslib": "^2.6.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/eslint": "^8.56.10",
"@types/estree": "^1.0.1",
"@types/grunt": "^0.4.27",
"@types/node": "^20.11.0",
"@nevware21/grunt-plugins-shared-utils": "0.5.1",
"@nevware21/grunt-eslint-ts": "^0.2.5",
"@nevware21/grunt-ts-plugin": "^0.4.6",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"typescript": "^4.9.4",
"typescript": "5.2.2",
"rollup": "^4.6.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
1 change: 0 additions & 1 deletion eslint-ts-plugin/test/tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"alwaysStrict": true,
"declaration": false,
"outDir": "../test-node",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"removeComments": false
},
Expand Down
1 change: 0 additions & 1 deletion eslint-ts-plugin/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"declaration": true,
"declarationDir": "./types",
"outDir": "./dist-esm",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"removeComments": true
},
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"dependencies": {
"@nevware21/ts-utils": ">= 0.11.3 < 2.x",
"@nevware21/ts-async": ">= 0.5.2 < 2.x",
"eslint-formatter-codeframe": "^7.32.1"
"eslint-formatter-codeframe": "^7.32.1",
"tslib": "^2.6.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
Expand All @@ -62,13 +63,14 @@
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/eslint": "^8.56.10",
"@types/estree": "^1.0.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.10",
"eslint-plugin-security": "^1.7.1",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"typescript": "^4.9.5",
"typescript": "5.2.2",
"nyc": "^17.0.0",
"codecov": "^3.8.3",
"rollup": "^4.6.0"
Expand Down
6 changes: 4 additions & 2 deletions shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,17 @@
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.11.3 < 2.x",
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-async": ">= 0.5.2 < 2.x",
"tslib": "^2.6.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/grunt": "^0.4.27",
"@types/eslint": "^8.56.10",
"@types/node": "^20.11.0",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"typescript": "^4.9.4",
"typescript": "5.2.2",
"rollup": "^4.6.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
2 changes: 0 additions & 2 deletions shared/test/src/tsConfigDetails.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ describe("getTsConfigDetails", () => {
declaration: true,
declarationDir: "./types",
outDir: "./dist-es5",
suppressImplicitAnyIndexErrors: true,
allowSyntheticDefaultImports: true,
rootDir: "./src",
removeComments: true
Expand Down Expand Up @@ -376,7 +375,6 @@ describe("getTsConfigDetails", () => {
declaration: true,
declarationDir: "./types",
outDir: "./dist-es6",
suppressImplicitAnyIndexErrors: true,
allowSyntheticDefaultImports: true,
rootDir: "./src",
removeComments: true
Expand Down
1 change: 0 additions & 1 deletion shared/test/tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"alwaysStrict": true,
"declaration": false,
"outDir": "../test-node",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true
},
"include": [
Expand Down
1 change: 0 additions & 1 deletion shared/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"declaration": true,
"declarationDir": "./types",
"outDir": "./dist-esm",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"rootDir": "./src",
"removeComments": true
Expand Down
6 changes: 4 additions & 2 deletions ts-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,19 @@
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.11.3 < 2.x",
"@nevware21/ts-async": ">= 0.5.2 < 2.x"
"@nevware21/ts-async": ">= 0.5.2 < 2.x",
"tslib": "^2.6.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/grunt": "^0.4.27",
"@types/node": "^20.11.0",
"@nevware21/grunt-plugins-shared-utils": "0.5.1",
"@nevware21/grunt-eslint-ts": "^0.2.5",
"@nevware21/grunt-ts-plugin": "^0.4.6",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"typescript": "^4.9.4",
"typescript": "5.2.2",
"rollup": "^4.6.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
1 change: 0 additions & 1 deletion ts-plugin/test/tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"alwaysStrict": true,
"declaration": false,
"outDir": "../test-node",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"removeComments": false
},
Expand Down
1 change: 0 additions & 1 deletion ts-plugin/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"declaration": true,
"declarationDir": "./types",
"outDir": "./dist-esm",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"removeComments": true
},
Expand Down
Loading