Skip to content

Commit

Permalink
build(tsc): fix tsconfig for tsc -b --watch (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Dec 31, 2023
1 parent 092daf6 commit 6f29f53
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions tsconfig.json
Expand Up @@ -6,15 +6,9 @@
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"types": [
"node"
],
"types": ["node"],
"lib": ["ES2020", "ES2019"]
},
"include": [
"lib/index.ts"
],
"exclude": [
"node_modules"
]
}
"include": ["lib/**.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 6f29f53

Please sign in to comment.