Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
NikGovorov committed Aug 9, 2019
1 parent 57889a6 commit 1588b07
Show file tree
Hide file tree
Showing 11 changed files with 4,980 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc.js
@@ -0,0 +1,10 @@
module.exports = {
presets: [
['@babel/preset-env', {
'targets': { 'browsers': ['last 2 chrome versions'] }
}]
],
plugins: [
['@babel/plugin-proposal-decorators', { legacy: true }]
]
};
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions .prettierrc
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
5 changes: 5 additions & 0 deletions jsconfig.json
@@ -0,0 +1,5 @@
{
"compilerOptions": {
"experimentalDecorators": true
}
}

0 comments on commit 1588b07

Please sign in to comment.