Skip to content

Commit 3358392

Browse files
Fix dependencies and optimize tsconfig files
1 parent ffbb9a7 commit 3358392

23 files changed

Lines changed: 29 additions & 50 deletions

File tree

package-lock.json

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ENGINE-TEMPLATE/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
],
3737
"scripts": {
3838
"build": "tsc --build tsconfig.build.json --verbose",
39-
"test": "tsc --build tsconfig.json --noEmit && jest --coverage",
39+
"test": "tsc --build tsconfig.json && jest --coverage",
4040
"lint": "eslint src/**/*.ts",
4141
"package": "npm pack",
4242
"all": "npm run build && npm run lint && npm run test && npm run package",

packages/ENGINE-TEMPLATE/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"composite": true,
5-
"outDir": "./dist",
64
"rootDir": ".",
7-
"isolatedModules": true
5+
"noEmit": true
86
},
97
"include": [
108
"./src",

packages/code-analyzer-core/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@
2121
"csv-stringify": "^6.6.0",
2222
"js-yaml": "^4.1.0",
2323
"semver": "^7.7.2",
24-
"xmlbuilder": "^15.1.1"
24+
"xmlbuilder": "^15.1.1",
25+
"tmp": "^0.2.3"
2526
},
2627
"devDependencies": {
2728
"@eslint/js": "^9.32.0",
2829
"@types/js-yaml": "^4.0.9",
2930
"@types/jest": "^30.0.0",
3031
"@types/sarif": "^2.1.7",
3132
"@types/semver": "^7.7.0",
33+
"@types/tmp": "^0.2.6",
3234
"cross-env": "^10.0.0",
3335
"eslint": "^9.32.0",
3436
"jest": "^30.0.5",
@@ -48,7 +50,7 @@
4850
],
4951
"scripts": {
5052
"build": "tsc --build tsconfig.build.json --verbose",
51-
"test": "tsc --build tsconfig.json --noEmit && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
53+
"test": "tsc --build tsconfig.json && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
5254
"lint": "eslint src/**/*.ts",
5355
"package": "npm pack",
5456
"all": "npm run build && npm run lint && npm run test && npm run package",

packages/code-analyzer-core/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"composite": true,
5-
"outDir": "./dist",
64
"rootDir": ".",
7-
"isolatedModules": true
5+
"noEmit": true
86
},
97
"include": [
108
"./src",

packages/code-analyzer-engine-api/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@
1616
},
1717
"types": "dist/index.d.ts",
1818
"dependencies": {
19-
"@types/node": "^20.0.0",
20-
"tmp": "^0.2.3"
19+
"@types/node": "^20.0.0"
2120
},
2221
"devDependencies": {
2322
"@eslint/js": "^9.32.0",
2423
"@types/jest": "^30.0.0",
25-
"@types/tmp": "^0.2.6",
2624
"eslint": "^9.32.0",
2725
"jest": "^30.0.5",
2826
"rimraf": "^6.0.1",
@@ -40,7 +38,7 @@
4038
],
4139
"scripts": {
4240
"build": "tsc --build tsconfig.build.json --verbose",
43-
"test": "tsc --build tsconfig.json --noEmit && jest --coverage",
41+
"test": "tsc --build tsconfig.json && jest --coverage",
4442
"lint": "eslint src/**/*.ts",
4543
"package": "npm pack",
4644
"all": "npm run build && npm run lint && npm run test && npm run package",

packages/code-analyzer-engine-api/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"composite": true,
5-
"outDir": "./dist",
64
"rootDir": ".",
7-
"isolatedModules": true
5+
"noEmit": true
86
},
97
"include": [
108
"./src",

packages/code-analyzer-eslint-engine/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"devDependencies": {
3636
"@types/jest": "^30.0.0",
3737
"@types/semver": "^7.7.0",
38-
"@types/tmp": "^0.2.6",
3938
"@types/unzipper": "^0.10.11",
4039
"cross-env": "^10.0.0",
4140
"jest": "^30.0.5",
@@ -53,7 +52,7 @@
5352
],
5453
"scripts": {
5554
"build": "tsc --build tsconfig.build.json --verbose",
56-
"test": "tsc --build tsconfig.json --noEmit && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
55+
"test": "tsc --build tsconfig.json && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
5756
"lint": "eslint src/**/*.ts",
5857
"package": "npm pack",
5958
"all": "npm run build && npm run lint && npm run test && npm run package",

packages/code-analyzer-eslint-engine/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"composite": true,
5-
"outDir": "./dist",
64
"rootDir": ".",
7-
"isolatedModules": true
5+
"noEmit": true
86
},
97
"include": [
108
"./src",

packages/code-analyzer-eslint8-engine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
],
5252
"scripts": {
5353
"build": "tsc --build tsconfig.build.json --verbose",
54-
"test": "tsc --build tsconfig.json --noEmit && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
54+
"test": "tsc --build tsconfig.json && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
5555
"lint": "eslint src/**/*.ts",
5656
"package": "npm pack",
5757
"all": "npm run build && npm run lint && npm run test && npm run package",

0 commit comments

Comments
 (0)