Fix output for microsoft-authentication

For #271167

All out of extensions normally target `out`. `dist` is for webpack
This commit is contained in:
Matt Bierner
2025-10-13 16:52:33 -07:00
parent ae7e096357
commit f197aadde1

View File

@@ -1,14 +1,10 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "./out",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true,
"lib": [
"WebWorker"
]