overleaf/services/web/tsconfig.backend.json
Jimmy Domagala-Tang ebd2a2f5fe Merge pull request #16353 from overleaf/em-typescript-in-web-backend
Enable type checking in the web backend

GitOrigin-RevId: cc8e34777c89704765fcd9b973aed806c3ae9016
2024-01-04 09:03:43 +00:00

22 lines
471 B
JSON

{
"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/**/*"
]
}