-
Notifications
You must be signed in to change notification settings - Fork 3
/
.npmignore
41 lines (34 loc) · 813 Bytes
/
.npmignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/.github/
/.husky/
/.vscode/
/coverage/
/docs/
/node_modules/
/scripts/
/test/
/docs/
/temp/
.gitattributes
.editorconfig
/jest.config.ts
/rollup.config.mjs
/typedoc.config.cjs
/.commitlintrc.js
/.eslintrc.yml
/.gitbook.yaml
/.prettierrc.yml
/jest.config.js
# Environmental secrets file -- should never be pushed to production!
.env
# Unnecessary template for .env file
.env.template
# Ensure potentially relevant documentation is included in the NPM tarball.
!FAQ.md
!CHANGELOG.md
!README.md
# Keep /src included for compatibility with Bun <https://bun.sh/>.
# Bun can read TypeScript natively, so we point it at the raw TypeScript
# source files in /src instead of the ESM5 ones (this is done in <./package.json>)
!/src/
# ...also keep the tsconfig.json files in as Bun may need them.
!/scripts/tsconfig/