Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMogdanz committed Dec 24, 2019
1 parent 4a6d6ba commit 272211e
Showing 14 changed files with 4,906 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/node_modules
/dist

# VSCode
.vscode/*
!.vscode/settings.json
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": false,
"trailingComma": "all"
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"prettier.trailingComma": "all"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# tf2-donation
# tf2-donation
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
presets: ["@babel/preset-typescript", "@babel/preset-env"],
plugins: [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
],
};
11 changes: 11 additions & 0 deletions config/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"steam": {
"account": {
"name": "",
"password": "",
"sharedSecret": "",
"identitySecret": ""
}
},
"owners": [""]
}
Loading

0 comments on commit 272211e

Please sign in to comment.