Skip to content

Commit 96b5d79

Browse files
authored
Merge branch 'main' into gagik/hide-clear
2 parents 13619e2 + 7e7fee6 commit 96b5d79

File tree

299 files changed

+875
-615
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

299 files changed

+875
-615
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,4 @@ DarshanaVenkatesh <[email protected]>
114114
Kevin Pamaran <[email protected]>
115115
Leo Generali <[email protected]>
116116
Ivan Medina <[email protected]>
117+
Nick Larew <[email protected]>

THIRD-PARTY-NOTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **Mongodb Compass**.
2-
This document was automatically generated on Thu Sep 25 2025.
2+
This document was automatically generated on Fri Sep 26 2025.
33

44
## List of dependencies
55

configs/testing-library-compass/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ module.exports = {
33
extends: ['@mongodb-js/eslint-config-compass'],
44
parserOptions: {
55
tsconfigRootDir: __dirname,
6-
project: ['./tsconfig-lint.json'],
6+
project: ['./tsconfig.json'],
77
},
88
};

configs/testing-library-compass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
},
3131
"types": "./dist/index.d.ts",
3232
"scripts": {
33-
"compile": "tsc -p tsconfig.json",
34-
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
33+
"compile": "tsc -p tsconfig-build.json",
34+
"typecheck": "tsc -p tsconfig.json --noEmit",
3535
"eslint": "eslint-compass",
3636
"prettier": "prettier-compass",
3737
"lint": "npm run eslint . && npm run prettier -- --check .",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src/**/*"],
4+
"exclude": ["./src/**/*.spec.*"]
5+
}

configs/testing-library-compass/tsconfig-lint.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

configs/testing-library-compass/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
"extends": "@mongodb-js/tsconfig-compass/tsconfig.react.json",
33
"compilerOptions": {
44
"outDir": "dist",
5-
// Because of the recursive deps
65
"skipLibCheck": true
76
},
8-
"include": ["src/**/*"],
9-
"exclude": ["./src/**/*.spec.*"]
7+
"include": ["**/*"],
8+
"exclude": ["node_modules", "dist"]
109
}

configs/webpack-config-compass/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module.exports = {
44
extends: ['@mongodb-js/eslint-config-compass'],
55
parserOptions: {
66
tsconfigRootDir: __dirname,
7-
project: ['./tsconfig-lint.json'],
7+
project: ['./tsconfig.json'],
88
},
99
};

configs/webpack-config-compass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
"scripts": {
3535
"bootstrap": "npm run compile",
3636
"prepublishOnly": "npm run compile && compass-scripts check-exports-exist",
37-
"compile": "tsc -p tsconfig.json",
37+
"compile": "tsc -p tsconfig-build.json",
3838
"postcompile": "gen-esm-wrapper . ./dist/.esm-wrapper.mjs",
39-
"typecheck": "tsc -p tsconfig-lint.json --noEmit",
39+
"typecheck": "tsc -p tsconfig.json --noEmit",
4040
"eslint": "eslint-compass",
4141
"prettier": "prettier-compass",
4242
"lint": "npm run eslint . && npm run prettier -- --check .",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src/**/*"],
4+
"exclude": ["./src/**/*.spec.*"]
5+
}

0 commit comments

Comments
 (0)