Merge pull request #16353 from overleaf/em-typescript-in-web-backend

Enable type checking in the web backend

GitOrigin-RevId: cc8e34777c89704765fcd9b973aed806c3ae9016
This commit is contained in:
Jimmy Domagala-Tang 2024-01-03 09:55:37 -05:00 committed by Copybot
parent 21dd23d0e4
commit ebd2a2f5fe
14 changed files with 38 additions and 0 deletions

View file

@ -470,6 +470,10 @@ lint: typecheck_frontend
typecheck_frontend:
npx -p typescript tsc --noEmit
lint: typecheck_backend
typecheck_backend:
npx -p typescript tsc -p tsconfig.backend.json --noEmit
lint_in_docker:
$(RUN_LINT_FORMAT) make lint -j2 --output-sync

View file

@ -0,0 +1 @@
{ "extends": "../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../tsconfig.backend.json" }

View file

@ -0,0 +1 @@
{ "extends": "../../tsconfig.backend.json" }

View file

@ -0,0 +1,22 @@
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": false,
"skipLibCheck": true,
"strict": true
},
"include": [
"app/src/**/*",
"modules/*/app/src/**/*",
"modules/*/test/acceptance/**/*",
"modules/*/test/smoke/**/*",
"modules/*/test/unit/**/*",
"scripts/**/*",
"test/acceptance/**/*",
"test/smoke/**/*",
"test/unit/**/*"
]
}