We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30df539 commit 02743d3Copy full SHA for 02743d3
helpers.d.ts
@@ -1 +1 @@
1
-export * from "./dist/helpers.d.ts";
+export * from "./dist/helpers.js";
tsconfig.json
@@ -1,12 +1,21 @@
{
2
"compilerOptions": {
3
+ "rootDir": ".",
4
"target": "ESNext",
5
"module": "ESNext",
- "moduleResolution": "Node",
6
+ "moduleResolution": "Bundler",
7
"esModuleInterop": true,
- "strict": true
8
+ "strict": true,
9
+ "paths": {
10
+ "magicast/helpers": [
11
+ "./src/helpers/index.ts"
12
+ ],
13
+ "magicast": [
14
+ "./src/index.ts"
15
+ ]
16
+ }
17
},
- "include": [
- "src"
18
+ "exclude": [
19
+ "dist"
20
]
21
}
0 commit comments