Move tsconfig files to root, and made webpack config build

This commit is contained in:
Dolan Miu
2017-12-29 01:11:59 +00:00
parent 90dc1103f6
commit f84af9a44b
6 changed files with 23 additions and 23 deletions

40
tslint.json Normal file
View File

@ -0,0 +1,40 @@
{
"extends": "tslint:latest",
"rules": {
"curly": true,
"one-variable-per-declaration": [
true
],
"no-any": true,
"no-consecutive-blank-lines": [
true
],
"no-require-imports": true,
"member-access": [
true
],
"indent": [
true,
"spaces"
],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration"
],
"max-line-length": [
false
],
"max-classes-per-file": [
false
],
"no-unused-variable": [
true
],
"no-implicit-dependencies": false,
"no-submodule-imports": false
}
}