Skip to content

Commit 5c0fb46

Browse files
committed
fix(types): add tsconfig for prepublish tsc build
Made-with: Cursor
1 parent d3c7b08 commit 5c0fb46

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
dist/
3+
packages/types/dist/
34
.DS_Store
45
*.log
56
coverage/

packages/types/tsconfig.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
6+
"outDir": "dist",
7+
"rootDir": "src",
8+
"declaration": true,
9+
"declarationMap": true,
10+
"strict": true,
11+
"skipLibCheck": true
12+
},
13+
"include": ["src/**/*.ts"]
14+
}

0 commit comments

Comments
 (0)