1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-14 10:26:19 +01:00

Fix locale test after typescript upgrade (#11859)

The TypeScript update broke locale tests, to fix this we need to define moduleResolution manually as mentioned in the TS changelog.
This commit is contained in:
Oscar Hinton 2024-11-05 11:40:47 +01:00 committed by GitHub
parent af6a2f5553
commit e3e675383f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,6 +3,7 @@
"compilerOptions": {
"outDir": "dist",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext"
},
"include": ["*.ts"]