-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update .gitignore for better IDE and build file exclusion
feat: add .npmignore to prevent unnecessary files from being included in npm package
- Loading branch information
Showing
2 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
node_modules | ||
dist | ||
.eslint-config-inspector | ||
# Idea IDE: | ||
**/.idea/ | ||
|
||
# Package lock (except for PNPM): | ||
**/yarn.lock | ||
**/package-lock.json | ||
**/bun.lockb | ||
|
||
# Packages: | ||
**/node_modules | ||
|
||
# Environment variables and secrets files: | ||
**/.env* | ||
|
||
# ESLint Inspector: | ||
.eslint-config-inspector | ||
|
||
# Builds: | ||
**/build | ||
**/dist | ||
|
||
# TS: | ||
**/*.tsbuildinfo | ||
|
||
# MacOS | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Project: | ||
src | ||
scripts | ||
|
||
# Dockerfile: | ||
Dockerfile | ||
|
||
# Configs: | ||
eslint.config.js | ||
tsconfig.json |