Skip to content

Commit

Permalink
Fix tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
andylouisqin committed Dec 23, 2024
1 parent a4311a7 commit e584579
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
"compilerOptions": {
"composite": true,
"declaration": true,
"module": "Node16",
"module": "ESNext",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"target": "es2022",
"moduleResolution": "node16"
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"declarationMap": true
},
"include": ["./src/**/*"],
"ts-node": {
Expand Down

0 comments on commit e584579

Please sign in to comment.