Skip to content

Commit

Permalink
chore: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Sep 6, 2023
1 parent 30df539 commit 02743d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helpers.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "./dist/helpers.d.ts";
export * from "./dist/helpers.js";
17 changes: 13 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
{
"compilerOptions": {
"rootDir": ".",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"strict": true
"strict": true,
"paths": {
"magicast/helpers": [
"./src/helpers/index.ts"
],
"magicast": [
"./src/index.ts"
]
}
},
"include": [
"src"
"exclude": [
"dist"
]
}

0 comments on commit 02743d3

Please sign in to comment.