From a5d85f1e7cdbf144e2793da3bb5183eff9c6a7bc Mon Sep 17 00:00:00 2001 From: "caleb.mabry.15@cnu.edu" Date: Tue, 22 Mar 2022 00:16:34 -0400 Subject: converted to typescript --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 6e4fb21..c2f6882 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "compilerOptions": { "outDir": "./dist", "allowJs": true, - "target": "es5" + "target": "es5", + "downlevelIteration": true }, "include": ["./webAO/*"] } \ No newline at end of file -- cgit From 89a7862ed462bd952a9814d9d4be078524bcf18c Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Wed, 23 Mar 2022 21:46:09 +0100 Subject: add strict with a comment --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index c2f6882..7803fbe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,8 @@ "outDir": "./dist", "allowJs": true, "target": "es5", + //"strict": true, + "strictNullChecks": false, //document.getElementBy "downlevelIteration": true }, "include": ["./webAO/*"] -- cgit