Skip to content
This repository was archived by the owner on Mar 23, 2023. It is now read-only.

Commit 467e1c9

Browse files
committed
chore: change types output dir
1 parent ec06f2b commit 467e1c9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ node_modules
3636
lib
3737
dist
3838
docs
39+
types

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
66
"main": "src/index.js",
77
"type": "module",
8-
"types": "dist/src/index.d.ts",
8+
"types": "types/src/index.d.ts",
99
"exports": {
1010
"./": {
1111
"import": "./src/index.js"
@@ -54,8 +54,8 @@
5454
"dep-check": "aegir dep-check"
5555
},
5656
"files": [
57-
"src",
58-
"dist"
57+
"*",
58+
"!**/*.tsbuildinfo"
5959
],
6060
"repository": {
6161
"type": "git",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "aegir/src/config/tsconfig.aegir.json",
33
"compilerOptions": {
4-
"outDir": "dist"
4+
"outDir": "types"
55
},
66
"include": [
77
"test",

0 commit comments

Comments
 (0)