Fix linter errors; add domain; add unit test support

This commit is contained in:
Niels Kooiman
2019-08-14 10:13:49 +02:00
parent 6f70ba29c9
commit 1b6fa67294
21 changed files with 628 additions and 29 deletions

View File

@@ -3,6 +3,7 @@
"target": "esnext",
"module": "esnext",
"strict": true,
"strictNullChecks": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
@@ -34,6 +35,7 @@
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
"node_modules",
"**/*.spec.ts"
]
}