Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphka committed Jul 31, 2023
0 parents commit a76c6a6
Show file tree
Hide file tree
Showing 16 changed files with 2,712 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These informations are stored in the browser cookies
TOKEN=
USER_ID=
SESSION_ID=
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
output
tests/*
!tests/index.test.js
.env
config.json
29 changes: 29 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"lib": ["ESNext"],
"typeRoots": [
"node_modules/@types",
"src/typings"
]
},
"exclude": [
"node_modules",
"output"
],
"include": [
"src",
"tests/*.test.js"
],
"typeAcquisition": {
"enable": true
}
}
Loading

0 comments on commit a76c6a6

Please sign in to comment.