backend: set moduleResolution to Node16 in tsconfig

This lets us catch any import errors in the backend as it now lines up
with Node's ESM module resolution.
This commit is contained in:
Norm 2022-09-21 11:33:57 -04:00
parent 26449d4944
commit 7ea052aa25
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

View file

@ -12,7 +12,7 @@
"sourceMap": false, "sourceMap": false,
"target": "ES2021", "target": "ES2021",
"module": "esnext", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "Node16",
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"removeComments": false, "removeComments": false,
"noLib": false, "noLib": false,