diff --git a/language-config.json b/language-configuration.json similarity index 72% rename from language-config.json rename to language-configuration.json index 5fb8b1a..4d6acd1 100644 --- a/language-config.json +++ b/language-configuration.json @@ -1,21 +1,21 @@ { "comments": { - "lineComment": "@c" + "lineComment": "@c", }, "brackets": [ ["{", "}"], ["[", "]"], - ["(", ")"] + ["(", ")"], ], "autoClosingPairs": [ ["{", "}"], ["[", "]"], - ["(", ")"] + ["(", ")"], ], "surroundingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], - ["`", "'"] - ] + ["`", "'"], + ], } diff --git a/package-lock.json b/package-lock.json index 4f8df2e..5c017a1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1217,7 +1217,8 @@ "he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true }, "human-signals": { "version": "1.1.1", @@ -1551,6 +1552,7 @@ "version": "1.4.5", "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-1.4.5.tgz", "integrity": "sha512-sNm4Tdc8zj5HnFtkNEcK/1tpvyfRxEuz1d4rkVceGPeMTfzd2twPTiEo/UbqxOexSt9AzJ/cvQXSTj7fa6Ey1w==", + "dev": true, "requires": { "he": "1.2.0" } diff --git a/package.json b/package.json index e34ea20..4c77a9f 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ }, "eslintConfig": { "root": true, + "ignorePatterns": "out/**", "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint" @@ -176,7 +177,7 @@ ".texinfo", ".txi" ], - "configuration": "./language-config.json" + "configuration": "./language-configuration.json" } ], "grammars": [ diff --git a/tsconfig.json b/tsconfig.json index 984ba79..33d1794 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", + ], } diff --git a/webpack.config.ts b/webpack.config.ts index e2b816b..8a4f545 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -13,9 +13,6 @@ const config: webpack.Configuration = { devtool: 'source-map', optimization: { concatenateModules: true, - innerGraph: true, - mergeDuplicateChunks: true, - mangleExports: true, minimize: true, }, externals: {