diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-11-14 15:05:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-14 15:05:36 -0500 |
commit | 4902a1cacb0348efde9ab342172f2706ac27e837 (patch) | |
tree | abbc0dbdcc03b232d01274cea0940a377223a767 /deno_typescript/lib.rs | |
parent | 8b90b8e88325d28fe41d8312ea91417b6e66a12e (diff) |
Turn on TS strict mode for deno_typescript (#3330)
Diffstat (limited to 'deno_typescript/lib.rs')
-rw-r--r-- | deno_typescript/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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", |