Merge pull request #28482 from overleaf/ar-move-notifications-changes-into-buildscripts

[monorepo] move notifications changes into buildscripts

GitOrigin-RevId: b5948702627d0bc87bffd3acc3d7c2ab9f4ac23d
This commit is contained in:
Andrew Rumble
2025-09-22 11:47:52 +01:00
committed by Copybot
parent 1a29026023
commit 423c2a47e5
44 changed files with 46 additions and 48 deletions

View File

@@ -7,4 +7,5 @@ validation-tools
--is-library=True
--node-version=22.18.0
--public-repo=False
--script-version=4.7.0
--test-acceptance-vitest=True
--test-unit-vitest=True

View File

@@ -16,7 +16,7 @@
"lint": "eslint --ext .js --ext .cjs --ext .ts --max-warnings 0 --format unix .",
"lint:fix": "eslint --fix --ext .js --ext .cjs --ext .ts .",
"test:ci": "npm run test:unit",
"test:unit": "vitest test/unit/src/*.test.ts --isolate=false",
"test:unit": "vitest test/unit --isolate=false",
"types:check": "tsc --noEmit"
},
"dependencies": {

View File

@@ -1,11 +1,8 @@
{
"extends": "../../tsconfig.backend.json",
"compilerOptions": {
"allowImportingTsExtensions": true
},
"include": [
"**/*.js",
"**/*.ts",
"**/*.cjs"
"**/*.cjs",
"**/*.ts"
]
}