Initial commit
This commit is contained in:
commit
dc1b64527c
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
.vscode
|
||||
node_modules
|
||||
**/*.js
|
||||
**/*.js.map
|
13
tsconfig.json
Normal file
13
tsconfig.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"sourceMap": true,
|
||||
"watch": false,
|
||||
"noUnusedParameters": true,
|
||||
"noUnusedLocals": true
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts"
|
||||
]
|
||||
}
|
19
tslint.json
Normal file
19
tslint.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"rules": {
|
||||
"no-unused-expression": true,
|
||||
"no-duplicate-variable": true,
|
||||
"curly": true,
|
||||
"class-name": true,
|
||||
"semicolon": [true, "always"],
|
||||
"triple-equals": true,
|
||||
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
|
||||
"only-arrow-functions": [true, "allow-declarations"],
|
||||
"no-eval": true,
|
||||
"no-invalid-this": true,
|
||||
"switch-default": true,
|
||||
"prefer-const": true,
|
||||
"arrow-return-shorthand": [true],
|
||||
"jsdoc-format": true,
|
||||
"no-consecutive-blank-lines": [true]
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user