Skip to content

Commit

Permalink
feat: first meaningful implemantation
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanfuzuli committed Feb 26, 2022
1 parent 29874d3 commit fbadcef
Show file tree
Hide file tree
Showing 11 changed files with 10,203 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
node_modules
/lib
6 changes: 6 additions & 0 deletions .npmignore
@@ -0,0 +1,6 @@
src
tsconfig.json
tslint.json
.prettierrc
.jestconfig
/vscode
5 changes: 5 additions & 0 deletions .prettierrc
@@ -0,0 +1,5 @@
{
"printWidth": 120,
"trailingComma": "all",
"singleQuote": true
}
13 changes: 13 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,13 @@
{
"git.ignoreLimitWarning": true,
"files.eol": "\n",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
7 changes: 7 additions & 0 deletions jestconfig.json
@@ -0,0 +1,7 @@
{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
}

0 comments on commit fbadcef

Please sign in to comment.