diff --git a/.changeset/eight-toys-tan.md b/.changeset/eight-toys-tan.md new file mode 100644 index 00000000..552d8df8 --- /dev/null +++ b/.changeset/eight-toys-tan.md @@ -0,0 +1,5 @@ +--- +"@bfra.me/tsconfig": patch +--- + +`package.json`: Update `homepage`, add `keywords`, and extend `exports` diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 1d69cc91..2341494d 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -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", @@ -15,6 +15,7 @@ "bugs": "https://github.com/bfra-me/works/issues", "keywords": [ "bfra.me", + "works", "typescript", "tsconfig", "config", @@ -28,7 +29,9 @@ "tsconfig.json" ], "exports": { - ".": "./tsconfig.json" + ".": "./tsconfig.json", + "./package.json": "./package.json", + "./tsconfig.json": "./tsconfig.json" }, "devDependencies": { "@bfra.me/tsconfig": "workspace:*", diff --git a/tsconfig.json b/tsconfig.json index 8bf4455c..f4afcd10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "@bfra.me/tsconfig", - "compilerOptions": { - "outDir": "lib" - }, - "include": ["**/src/**/*.ts", "typings/**/*.d.ts"] + "exclude": ["node_modules", "**/lib/*"] }