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 From b2000f04663092f7a4dfcbab306d67df7e5ce538 Mon Sep 17 00:00:00 2001 From: "caleb.mabry.15@cnu.edu" Date: Thu, 24 Mar 2022 00:22:33 -0400 Subject: Added support for issue with aomlParser --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 7803fbe..85f6983 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "outDir": "./dist", "allowJs": true, "target": "es5", - //"strict": true, + "strict": true, "strictNullChecks": false, //document.getElementBy "downlevelIteration": true }, -- cgit From e1cb9e4b204f57d6313a359566b908e90611ab1a Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 26 Mar 2022 16:34:33 +0100 Subject: hello typescript my old friend --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 85f6983..16f950d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,8 @@ "outDir": "./dist", "allowJs": true, "target": "es5", - "strict": true, + "lib": ["DOM","DOM.Iterable"], + "strict": false, "strictNullChecks": false, //document.getElementBy "downlevelIteration": true }, -- cgit From bda49615f436ec662d29eae91ef3265fcaa05e2f Mon Sep 17 00:00:00 2001 From: Caleb Mabry Date: Sat, 26 Mar 2022 13:13:39 -0400 Subject: Allow strict --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 16f950d..9422b00 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "allowJs": true, "target": "es5", "lib": ["DOM","DOM.Iterable"], - "strict": false, + "strict": true, "strictNullChecks": false, //document.getElementBy "downlevelIteration": true }, -- cgit