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:
parent
dec3e66410
commit
c99a1eb633
|
@ -0,0 +1,5 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
Comment: Only made a change to a tsconfig that doesn't impact build output
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,12 @@
|
||||||
// Target latest version of ECMAScript.
|
// Target latest version of ECMAScript.
|
||||||
"target": "esnext",
|
"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.
|
// Search under node_modules for non-relative imports.
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue