Skip to content

Commit 0045685

Browse files
committed
added npm and prettier ignore files
1 parent 8932690 commit 0045685

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

.npmignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.*
2+
*.log
3+
4+
# tools configs
5+
**/tsconfig.json
6+
tsconfig.*.json
7+
tslint.json
8+
**/webpack.config.js
9+
**/jest.config.js
10+
**/prettier.config.js
11+
12+
# build scripts
13+
config/
14+
scripts/
15+
16+
# Test files
17+
**/*.spec.js
18+
**/*.test.js
19+
**/*.test.d.ts
20+
**/*.spec.d.ts
21+
__tests__
22+
coverage
23+
24+
# Sources
25+
node_modules
26+
src
27+
docs
28+
examples
29+
30+
## this is generated by `npm pack`
31+
*.tgz
32+
package

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

0 commit comments

Comments
 (0)