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" + ] }