Update configuation.

This commit is contained in:
CismonX 2020-11-03 05:14:05 +08:00
parent 59168bf3bf
commit d2c94e5773
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
5 changed files with 14 additions and 14 deletions

View File

@ -1,21 +1,21 @@
{
"comments": {
"lineComment": "@c"
"lineComment": "@c",
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
["(", ")"],
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"]
["(", ")"],
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "'"]
]
["`", "'"],
],
}

4
package-lock.json generated
View File

@ -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"
}

View File

@ -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": [

View File

@ -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",
],
}

View File

@ -13,9 +13,6 @@ const config: webpack.Configuration = {
devtool: 'source-map',
optimization: {
concatenateModules: true,
innerGraph: true,
mergeDuplicateChunks: true,
mangleExports: true,
minimize: true,
},
externals: {