Add strict tsc flag for the backend ts code (#3355)

This commit is contained in:
Rubén Rincón Blanco
2022-02-12 02:41:24 +01:00
committed by GitHub
parent db229b94bc
commit 045c68d1bc
7 changed files with 178 additions and 206 deletions

View File

@@ -9,6 +9,9 @@
"moduleResolution": "node",
/* Code generation */
"outDir": "./out/app",
"typeRoots": ["./typings", "./node_modules/@types"]
"typeRoots": ["./typings", "./node_modules/@types"],
/* Other options */
"strict": true,
"noImplicitAny": false
}
}