Fix one more instance of unspecified include in tsconfig. (#47207)
This commit is contained in:
parent
94ed6a943f
commit
fbcdb78d18
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: dev
|
||||
Comment: Fix a persistent build bug where TS would try compile files outside of src and typings in packages/js/experimental
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"extends": "../tsconfig",
|
||||
"include": [ "src/", "typings/" ],
|
||||
"compilerOptions": {
|
||||
"rootDir": "src",
|
||||
"outDir": "build-module",
|
||||
|
@ -7,9 +8,6 @@
|
|||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"declarationDir": "./build-types",
|
||||
"typeRoots": [
|
||||
"./typings",
|
||||
"./node_modules/@types"
|
||||
]
|
||||
"typeRoots": [ "./typings", "./node_modules/@types" ]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue