Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit 2f5ea45

Browse files
authored
build: skip types file generation (#1758)
* build: skip types file generation * build: remove types * build: fix dist
1 parent 217b40b commit 2f5ea45

3 files changed

Lines changed: 1 addition & 8 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "@snapshot-labs/strategies",
33
"version": "0.1.0",
44
"main": "dist/index.js",
5-
"types": "dist/index.d.ts",
65
"exports": {
76
".": "./dist/index.js"
87
},

src/typings.d.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
"module": "commonjs",
66
"moduleResolution": "node",
77
"strict": true,
8-
"declaration": true,
98
"noUnusedLocals": true,
109
"esModuleInterop": true,
1110
"noImplicitAny": false,
1211
"resolveJsonModule": true,
1312
"allowSyntheticDefaultImports": true,
1413
"skipLibCheck": true
1514
},
16-
"include": ["src", "test"],
17-
"files": ["./src/typings.d.ts"]
15+
"include": ["src/**/*"]
1816
}

0 commit comments

Comments
 (0)