vscode/extensions/microsoft-authentication/tsconfig.json
Matt Bierner 0ec29f0fcf
Pick up TS 4.4@next for building
- Disables the two new strictness options for now
- Adopt shared tsconfig for `microsoft-authentication `
2021-06-07 14:44:24 -07:00

23 lines
416 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true
},
"exclude": [
"node_modules"
],
"include": [
"src/**/*"
]
}