Skip to content

Commit

Permalink
feat(config): exports esmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 committed Dec 6, 2024
1 parent 5effe34 commit 4f3f8c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/src
*.ts
1 change: 0 additions & 1 deletion src/tsconfig/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"paths": { "@app*": ["app/*"], "@src*": ["src/*"], "~/*": ["src/*"] },
"preserveSymlinks": true,
"resolveJsonModule": true,
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": ["./src/tsconfig/tsconfig.node.json"],
"compilerOptions": {
"outDir": "./dist",
"rootDir": ".",
"rootDir": "./src",
"typeRoots": ["./src/types", "eslint-plugin-tsdoc"]
}
},
"exclude": ["prettier.config.js", "node_modules", "dist","eslint.config.js"]
}

0 comments on commit 4f3f8c9

Please sign in to comment.