Skip to content

Commit 02743d3

Browse files
committed
chore: update tsconfig
1 parent 30df539 commit 02743d3

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

helpers.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./dist/helpers.d.ts";
1+
export * from "./dist/helpers.js";

tsconfig.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"compilerOptions": {
3+
"rootDir": ".",
34
"target": "ESNext",
45
"module": "ESNext",
5-
"moduleResolution": "Node",
6+
"moduleResolution": "Bundler",
67
"esModuleInterop": true,
7-
"strict": true
8+
"strict": true,
9+
"paths": {
10+
"magicast/helpers": [
11+
"./src/helpers/index.ts"
12+
],
13+
"magicast": [
14+
"./src/index.ts"
15+
]
16+
}
817
},
9-
"include": [
10-
"src"
18+
"exclude": [
19+
"dist"
1120
]
1221
}

0 commit comments

Comments
 (0)