Fixed Beta Tester TSConfig (#37841)

All of our TS projects need this to avoid pulling conflict types
from higher `node_modules` directories.
This commit is contained in:
Christopher Allford 2023-04-25 13:20:04 -07:00 committed by GitHub
parent dec3e66410
commit c99a1eb633
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,5 @@
Significance: patch
Type: dev
Comment: Only made a change to a tsconfig that doesn't impact build output

View File

@ -2,6 +2,12 @@
"compilerOptions": {
// Target latest version of ECMAScript.
"target": "esnext",
// Make sure we're not pulling types from external projects.
"typeRoots": [
"./typings",
"./node_modules/@types"
],
// Search under node_modules for non-relative imports.
"moduleResolution": "node",