Skip to content

Commit 7b76058

Browse files
committed
chore: tsconfig
1 parent 3133c4e commit 7b76058

File tree

4 files changed

+46
-40
lines changed

4 files changed

+46
-40
lines changed

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@
3636
"@types/eslint": "^8.44.2",
3737
"@types/esquery": "^1.5.0",
3838
"@types/estree": "^1.0.1",
39+
"@types/json-schema": "^7.0.12",
3940
"@types/lodash.defaultsdeep": "^4.6.7",
4041
"@types/mocha": "^10.0.1",
4142
"@types/node": "^20.5.0",
4243
"@types/semver": "^7.5.0",
4344
"@types/spdx-expression-parse": "^3.0.2",
44-
"@typescript-eslint/parser": "^6.3.0",
45+
"@typescript-eslint/parser": "^6.4.0",
4546
"babel-plugin-add-module-exports": "^1.0.4",
4647
"babel-plugin-istanbul": "^6.1.1",
4748
"camelcase": "^6.3.0",
@@ -55,6 +56,7 @@
5556
"glob": "^10.3.3",
5657
"husky": "^8.0.3",
5758
"jsdoc-type-pratt-parser": "^4.0.0",
59+
"json-schema": "^0.4.0",
5860
"lint-staged": "^14.0.0",
5961
"lodash.defaultsdeep": "^4.6.1",
6062
"mocha": "^10.2.0",

pnpm-lock.yaml

+39-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig-prod.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2022"],
4-
"moduleResolution": "Node",
5-
"module": "Commonjs",
6-
"esModuleInterop": true,
4+
"moduleResolution": "Bundler",
5+
"module": "ESNext",
76
"allowJs": true,
87
"checkJs": true,
98
"noEmit": false,

tsconfig.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"compilerOptions": {
33
"lib": ["es2022"],
4-
"moduleResolution": "Node",
5-
"module": "Commonjs",
6-
"esModuleInterop": true,
4+
"moduleResolution": "Bundler",
5+
"module": "ESNext",
76
"allowJs": true,
87
"checkJs": true,
98
"noEmit": true,

0 commit comments

Comments
 (0)