Skip to content

Commit

Permalink
Added gitignore and tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Trickfilm400 committed Feb 20, 2022
1 parent 8f5838c commit 62f05d5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea/
node_modules/
dist/
14 changes: 14 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
],
"include": [
"src"
]
}

0 comments on commit 62f05d5

Please sign in to comment.