Fix one more instance of unspecified include in tsconfig. (#47207)

This commit is contained in:
Sam Seay 2024-05-08 09:53:56 +08:00 committed by GitHub
parent 94ed6a943f
commit fbcdb78d18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -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

View File

@ -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" ]
}
}