Skip to content

Commit ff64eb3

Browse files
authored
Merge pull request #5 from githubnext/copilot/fix-github-actions-workflow
Fix TypeScript type check CI failure: rootDir/tests conflict
2 parents 07f77d9 + 9d6d798 commit ff64eb3

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
dist/
3+
*.tsbuildinfo
34
package-lock.json
45
*.tgz

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"moduleResolution": "bundler",
66
"lib": ["ESNext", "DOM"],
77
"outDir": "./dist",
8-
"rootDir": "./src",
8+
"rootDir": ".",
9+
"allowImportingTsExtensions": true,
10+
"noEmit": true,
911
"strict": true,
1012
"noUncheckedIndexedAccess": true,
1113
"exactOptionalPropertyTypes": true,

0 commit comments

Comments
 (0)