-
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.
- Loading branch information
Showing
11 changed files
with
3,400 additions
and
1 deletion.
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
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,5 @@ | ||
output*/ | ||
tsconfig.tsbuildinfo | ||
node_modules/ | ||
.env | ||
dist/ |
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,38 @@ | ||
# Ignore node_modules | ||
node_modules | ||
|
||
# Ignore build output | ||
dist | ||
build | ||
|
||
# Ignore coverage reports | ||
coverage | ||
|
||
# Ignore environment files | ||
.env | ||
.env.local | ||
.env.*.local | ||
|
||
# Ignore log files | ||
*.log | ||
|
||
# Ignore TypeScript declaration files | ||
*.d.ts | ||
|
||
# Ignore temporary files | ||
tmp | ||
temp | ||
|
||
# Ignore IDE and editor config files | ||
.vscode | ||
.idea | ||
*.sublime-workspace | ||
*.sublime-project | ||
|
||
# Ignore all test files | ||
**/*.spec.ts | ||
**/*.test.ts | ||
|
||
# Ignore other non-source files | ||
*.tsbuildinfo | ||
output/ |
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,9 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"endOfLine": "lf", | ||
"printWidth": 80, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "all" | ||
} |
Oops, something went wrong.