example > typescript setup - add tsconfig, tslint, rename to tsx

This commit is contained in:
2020-01-24 16:58:02 +05:30
parent 4c7df6dfc8
commit a8c5431a5a
4 changed files with 50 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier"
],
"rules": {
"no-empty-interface": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-console": false,
"member-ordering": false,
"jsx-no-lambda": false,
"interface-name": false,
"no-any": true
},
"defaultSeverity": "warning"
}