api: ignore deprecations for the node and baseUrl TS errors

Gotta fix then eventually:

8.025 tsconfig.json(5,25): error TS5107: Option 'moduleResolution=node10' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
8.025 Visit https://aka.ms/ts6 for migration information.
8.025 tsconfig.json(10,5): error TS5101: Option 'baseUrl' is deprecated and will stop functioning in TypeScript 7.0. Specify compilerOption '"ignoreDeprecations": "6.0"' to silence this error.
8.025 Visit https://aka.ms/ts6 for migration information.
Pedro Lucas Porcellis porcellis@eletrotupi.com 7 days ago 80250865fa1e6f700b369882fb59ee19938f0ed0
Parents: 1b634a7
1 file(s) changed
  • api/tsconfig.build.json +3 -0
api/tsconfig.build.json
@@ -1,5 +1,8 @@
1 1 {
2 2 "extends": "./tsconfig.json",
3 + "compilerOptions": {
4 + "ignoreDeprecations": "6.0"
5 + },
3 6 "include": ["src/**/*"],
4 7 "exclude": ["node_modules", "dist", "tests"]
5 8 }