Skip to content

Commit f8c8135

Browse files
authored
Fix wrong path fro compile command (#1997)
1 parent 2931c34 commit f8c8135

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"compile": "tsc --build tsconfig.build.json",
5454
"tsc:root-types": "node types-checks-filter-out-node_modules.js",
5555
"test": "run-s test:*",
56-
"test:tsc": "tsc --project tsconfig.json --noEmit",
56+
"test:tsc": "tsc --project tsconfig.json --noEmit --rootDir .",
5757
"test:lint": "eslint .",
5858
"test:unit": "vitest --run",
5959
"test:types": "npm run ts && npm run tsc:root-types",

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"outDir": "./lib/",
88
"module": "esnext",
99
"target": "es2022",
10-
"rootDir": ".",
1110
"lib": ["ES2022", "DOM"],
1211
"strictBindCallApply": true,
1312
"removeComments": true,

0 commit comments

Comments
 (0)