Skip to content
This repository was archived by the owner on Mar 15, 2024. It is now read-only.

Commit 0b2577a

Browse files
committed
initial commit
0 parents  commit 0b2577a

File tree

1,590 files changed

+15978
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,590 files changed

+15978
-0
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/.yarn/releases/** binary linguist-vendored
2+
/.yarn/cache/** linguist-vendored
3+
/.yarn/sdks/** linguist-vendored
4+
/.vscode/*.json linguist-language=JSON5
5+
/.pnp.js binary linguist-vendored
6+
/.pnp.cjs binary linguist-vendored

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.DS_Store
2+
*.log
3+
*.tgz
4+
5+
# Why use node_modules
6+
node_modules
7+
8+
# Yarn v2
9+
.yarn/unplugged
10+
.yarn/build-state.yml
11+
.yarn/install-state.gz
12+
13+
# Build
14+
/*.js
15+
!/index.js

.vim/coc-settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"workspace.workspaceFolderCheckCwd": false,
3+
"tsserver.tsdk": ".yarn/sdks/typescript/lib"
4+
}

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"arcanis.vscode-zipfs"
4+
]
5+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"search.exclude": {
3+
"**/.yarn": true,
4+
"**/.pnp.*": true
5+
},
6+
"typescript.tsdk": ".yarn/sdks/typescript/lib",
7+
"typescript.enablePromptUseWorkspaceTsdk": true
8+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)