Skip to content

Commit 150e4a6

Browse files
committed
Changed tsconfig's rootDir setting from '.' to './src' to fix misplaced build output (ouch).
Updated version for release (again).
1 parent b226a2c commit 150e4a6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@toreda/types",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"public": true,
55
"description": "Toreda's commonly used typescript aliases and mapped types.",
66
"main": "./dist/index.js",

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"exclude": ["node_modules", "**/*.spec.ts", "tests", "dist/**"],
3-
"include": ["**/src/index.ts"],
3+
"include": ["**/src/index.ts", "./src/**.ts"],
44
"filesGlob": ["./src/**.ts", "!./node_modules/**"],
55
"compilerOptions": {
66
"baseUrl": ".",
@@ -16,7 +16,7 @@
1616
"outDir": "./dist",
1717
"preserveConstEnums": true,
1818
"removeComments": false,
19-
"rootDir": ".",
19+
"rootDir": "./src",
2020
"strictBindCallApply": true,
2121
"strictNullChecks": true,
2222
"strictPropertyInitialization": true,

0 commit comments

Comments
 (0)