Skip to content

Commit 6eff16b

Browse files
committed
chore: update tsconfig path
1 parent ecd7379 commit 6eff16b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tsconfig.base.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,19 @@
66
"types": [
77
"vitest/globals"
88
],
9-
"module": "Node16",
9+
"module": "commonjs",
1010
"declaration": true,
1111
"sourceMap": true,
1212
"strict": true,
13-
"moduleResolution": "node16",
13+
"moduleResolution": "node",
1414
"esModuleInterop": true,
1515
"skipLibCheck": true,
1616
"forceConsistentCasingInFileNames": true,
1717
"noImplicitOverride": true,
18-
"composite": true
18+
"composite": true,
19+
// Can be removed if we switch away from commonjs.
20+
"paths": {
21+
"modern-tar/fs": ["./node_modules/modern-tar/dist/fs/index.d.ts"]
22+
}
1923
}
2024
}

0 commit comments

Comments
 (0)