Skip to content

Commit

Permalink
esm support
Browse files Browse the repository at this point in the history
  • Loading branch information
tsndr committed Oct 21, 2024
1 parent 24a85e9 commit 96c5245
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"compilerOptions": {
"outDir": ".",
"module": "commonjs",
"module": "esnext",
"target": "esnext",
"lib": ["esnext"],
"declaration": true,
"emitDeclarationOnly": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
Expand All @@ -15,6 +16,7 @@
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"preserveConstEnums": true,
Expand Down

0 comments on commit 96c5245

Please sign in to comment.