Skip to content

Commit 83a7b0c

Browse files
authored
Fix .d.ts API (#801)
* use api-extractor fixes #800 * run `npm audit fix` * 2.15.1 * bump ts-node * fix build
1 parent f24ae9b commit 83a7b0c

9 files changed

+1359
-114
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
out/
3+
dist/
34
npm-debug.log
45
!src/test/**/node_modules
56
yarn.lock

Diff for: .npmignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@
33
.vscode/
44
build/
55
src/
6-
76
out/test/
87
out/**/*.d.ts
9-
!out/api.d.ts
10-
118
.dockerignore
129
.gitignore
1310
.prettierignore
1411
Dockerfile
1512
SECURITY.md
1613
tsconfig.json
14+
api-extractor.json
1715
**/*.js.map

Diff for: .vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
"[typescript]": {
1616
"editor.defaultFormatter": "esbenp.prettier-vscode"
1717
},
18-
"git.branchProtection": ["main"]
18+
"git.branchProtection": ["main"],
19+
"files.associations": { "*.json": "jsonc" }
1920
}

0 commit comments

Comments
 (0)