From ddee7b28b93944ef305df108349cd93e9f46d842 Mon Sep 17 00:00:00 2001 From: CismonX Date: Tue, 16 Mar 2021 20:00:12 +0800 Subject: [PATCH] Do not use json with comments. --- language-configuration.json | 10 +++++----- tsconfig.json | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/language-configuration.json b/language-configuration.json index 4d6acd1..5fb8b1a 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -1,21 +1,21 @@ { "comments": { - "lineComment": "@c", + "lineComment": "@c" }, "brackets": [ ["{", "}"], ["[", "]"], - ["(", ")"], + ["(", ")"] ], "autoClosingPairs": [ ["{", "}"], ["[", "]"], - ["(", ")"], + ["(", ")"] ], "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], - ["`", "'"], - ], + ["`", "'"] + ] } diff --git a/tsconfig.json b/tsconfig.json index 33d1794..984ba79 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,17 +4,17 @@ "target": "ES2019", "outDir": "out", "lib": [ - "ES2019", + "ES2019" ], "esModuleInterop": true, "strictNullChecks": true, "sourceMap": true, "rootDir": "src", "strict": true, - "noImplicitReturns": true, + "noImplicitReturns": true }, "exclude": [ "node_modules", - "*.config.ts", - ], + "*.config.ts" + ] }