Skip to content

Commit

Permalink
feat(build): rectify module resolution by fixing TypeScript output st…
Browse files Browse the repository at this point in the history
…ructure
  • Loading branch information
vkartk committed Jan 16, 2025
1 parent f59f3bc commit ed4a60e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"types": ["node"]
},
"include": ["src/**/*", "test.ts"],
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}

0 comments on commit ed4a60e

Please sign in to comment.