Skip to content

Commit e70579e

Browse files
committed
Initial setup
0 parents  commit e70579e

9 files changed

+1355
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
/.rpt2_cache
3+
/node_modules
4+
/coverage
5+
/build
6+
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*

.npmignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.DS_Store
2+
/.rpt2_cache
3+
/src
4+
/test
5+
/examples
6+
/coverage
7+
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parser": "typescript",
3+
"semi": true,
4+
"singleQuote": true,
5+
"trailingComma": "es5",
6+
"printWidth": 100
7+
}

.vscode/settings.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"search.exclude": {
4+
"**/node_modules": true
5+
},
6+
"typescript.tsdk": "node_modules/typescript/lib/",
7+
"editor.tabSize": 2,
8+
"editor.formatOnType": true,
9+
"editor.formatOnSave": true,
10+
"tslint.autoFixOnSave": true,
11+
"tsimporter.preferRelative": false,
12+
}

0 commit comments

Comments
 (0)