Pick up TS 4.4@next for building

- Disables the two new strictness options for now
- Adopt shared tsconfig for `microsoft-authentication `
This commit is contained in:
Matt Bierner
2021-06-07 14:43:52 -07:00
parent 4c3191731b
commit 0ec29f0fcf
7 changed files with 22 additions and 18 deletions

View File

@@ -1,22 +1,22 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2019"],
"module": "commonjs",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2019"
"sourceMap": true
},
"exclude": ["node_modules"],
"include": ["src/**/*"]
"exclude": [
"node_modules"
],
"include": [
"src/**/*"
]
}