Skip to content

Commit

Permalink
fix(tsconfig): update package.json (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusrbrown authored Mar 18, 2024
1 parent 809dfaf commit 5564b82
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/eight-toys-tan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bfra.me/tsconfig": patch
---

`package.json`: Update `homepage`, add `keywords`, and extend `exports`
7 changes: 5 additions & 2 deletions packages/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"type": "module",
"main": "tsconfig.json",
"homepage": "https://github.com/bfra-me/works/blob/main/packages/tsconfig#readme",
"homepage": "https://github.com/bfra-me/works/tree/main/packages/tsconfig#readme",
"repository": {
"directory": "packages/tsconfig",
"type": "git",
Expand All @@ -15,6 +15,7 @@
"bugs": "https://github.com/bfra-me/works/issues",
"keywords": [
"bfra.me",
"works",
"typescript",
"tsconfig",
"config",
Expand All @@ -28,7 +29,9 @@
"tsconfig.json"
],
"exports": {
".": "./tsconfig.json"
".": "./tsconfig.json",
"./package.json": "./package.json",
"./tsconfig.json": "./tsconfig.json"
},
"devDependencies": {
"@bfra.me/tsconfig": "workspace:*",
Expand Down
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "@bfra.me/tsconfig",
"compilerOptions": {
"outDir": "lib"
},
"include": ["**/src/**/*.ts", "typings/**/*.d.ts"]
"exclude": ["node_modules", "**/lib/*"]
}

0 comments on commit 5564b82

Please sign in to comment.