diff --git a/tsconfig.json b/tsconfig.json
index fd2c21ea..e5bf92c6 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,6 +1,6 @@
{
"include": ["src/**/*.ts"],
- "exclude": ["*.js", "dist", "marion", "attachments"],
+ "exclude": ["*.js", "dist", "attachments"],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
@@ -29,7 +29,7 @@
/* Strict Type-Checking Options */
"strict": false /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
- "strictNullChecks": true, /* Enable strict null checks. */
+ "strictNullChecks": true /* Enable strict null checks. */,
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
"strictPropertyInitialization": false /* Enable strict checking of property initialization in classes. */,
|