Finish app conversion and enforce code style

This commit is contained in:
hensm
2019-02-26 01:30:30 +00:00
parent b7571791e2
commit 1e49fbe9be
19 changed files with 541 additions and 186 deletions

View File

@@ -17,7 +17,6 @@
"preact": "^8.4.2",
"preact-compat": "^3.18.4",
"ts-loader": "^5.3.3",
"uuid": "^3.3.2",
"web-ext": "^2.9.1",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2"

View File

@@ -1,14 +1,14 @@
{
"compilerOptions": {
"allowJs": true
, "sourceMap": true
, "target": "es6"
, "noImplicitAny": true
, "esModuleInterop": true
, "moduleResolution": "node"
, "resolveJsonModule": true
, "removeComments": true
, "jsx": "react"
, "lib": [ "esnext", "dom" ]
, "moduleResolution": "node"
, "noImplicitAny": true
, "removeComments": true
, "resolveJsonModule": true
, "sourceMap": true
, "target": "es6"
}
}