From 5e78aa97f8b5cf8142fd32cd754d02fea7f11b2d Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Fri, 2 Feb 2024 17:08:48 -0800 Subject: [PATCH] chore(endomoat): use strict types --- packages/endomoat/src/tsconfig.json | 7 ++++--- packages/endomoat/test/tsconfig.json | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/packages/endomoat/src/tsconfig.json b/packages/endomoat/src/tsconfig.json index 09970f335c..62b08797a1 100644 --- a/packages/endomoat/src/tsconfig.json +++ b/packages/endomoat/src/tsconfig.json @@ -4,12 +4,13 @@ "outDir": "../types", "rootDir": "..", "paths": { - "lavamoat-core": ["../../core"] + "lavamoat-core": ["../../core"], }, "target": "esnext", "module": "NodeNext", - "types": ["node", "ses"] + "types": ["node", "ses"], + "strict": true, }, "include": ["."], - "references": [{ "path": "../../core/tsconfig.json" }] + "references": [{ "path": "../../core/tsconfig.json" }], } diff --git a/packages/endomoat/test/tsconfig.json b/packages/endomoat/test/tsconfig.json index 94ab3b8b71..d4e8079097 100644 --- a/packages/endomoat/test/tsconfig.json +++ b/packages/endomoat/test/tsconfig.json @@ -3,12 +3,13 @@ "compilerOptions": { "rootDir": "..", "paths": { - "lavamoat-core": ["../../core"] + "lavamoat-core": ["../../core"], }, "target": "esnext", "module": "NodeNext", - "types": ["node", "ses"] + "types": ["node", "ses"], + "strict": true, }, "include": ["../test"], - "references": [{ "path": "../src/tsconfig.json" }] + "references": [{ "path": "../src/tsconfig.json" }], }