Skip to content

Commit 0022913

Browse files
committed
v0.1.1: Include tsconfig.json in package
tsconfig.json's `extends` option uses legacy module resolution [1] and, as a result, does not honor package.json's `exports` field. This change publishes tsconfig.json at the root of the package so that it can be imported by consumers via `"extends": "bitumen"`. [1] microsoft/TypeScript#48665
1 parent dc00b69 commit 0022913

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bitumen",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A collection of utility classes, types, and opinionated configurations for Babel, ESLint, rollup.js, and TypeScript.",
55
"author": "Nick Chevsky",
66
"license": "BSD-2-Clause",
@@ -16,7 +16,8 @@
1616
"./types": "./dist/types/index.js"
1717
},
1818
"files": [
19-
"dist/"
19+
"dist/",
20+
"tsconfig.json"
2021
],
2122
"sideEffects": false,
2223
"type": "module",

0 commit comments

Comments
 (0)