From 4902a1cacb0348efde9ab342172f2706ac27e837 Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Thu, 14 Nov 2019 15:05:36 -0500 Subject: Turn on TS strict mode for deno_typescript (#3330) --- deno_typescript/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'deno_typescript/lib.rs') diff --git a/deno_typescript/lib.rs b/deno_typescript/lib.rs index 56072ebdc..e53a4243d 100644 --- a/deno_typescript/lib.rs +++ b/deno_typescript/lib.rs @@ -127,6 +127,7 @@ pub fn compile_bundle( let config_json = serde_json::json!({ "compilerOptions": { + "strict": true, "declaration": true, "lib": ["esnext"], "module": "amd", -- cgit v1.2.3