diff options
author | Alan Pearce | 2024-04-01 22:16:44 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-01 22:16:44 +0200 |
commit | c6d1ef68b084883936d9464037bee0831b51bc9b (patch) | |
tree | dd2e6aa6404e9eb551bc7b0aff0e9acde7049cbd /tsconfig.json | |
parent | 0797935fa791c04e8041da7d17f2fc86c0bd8525 (diff) | |
download | website-c6d1ef68b084883936d9464037bee0831b51bc9b.tar.lz website-c6d1ef68b084883936d9464037bee0831b51bc9b.tar.zst website-c6d1ef68b084883936d9464037bee0831b51bc9b.zip |
tsc: disable implicit any
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json index 89af184..4b0a101 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,7 @@ "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "allowJs": true, + "noImplicitAny": true, "paths": { "toml-matter": ["./node_modules/toml-matter"] }, |