Do not use json with comments.

This commit is contained in:
CismonX 2021-03-16 20:00:12 +08:00
parent 222f0f8e12
commit ddee7b28b9
Signed by: cismonx
GPG Key ID: 3094873E29A482FB
2 changed files with 9 additions and 9 deletions

View File

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

View File

@ -4,17 +4,17 @@
"target": "ES2019", "target": "ES2019",
"outDir": "out", "outDir": "out",
"lib": [ "lib": [
"ES2019", "ES2019"
], ],
"esModuleInterop": true, "esModuleInterop": true,
"strictNullChecks": true, "strictNullChecks": true,
"sourceMap": true, "sourceMap": true,
"rootDir": "src", "rootDir": "src",
"strict": true, "strict": true,
"noImplicitReturns": true, "noImplicitReturns": true
}, },
"exclude": [ "exclude": [
"node_modules", "node_modules",
"*.config.ts", "*.config.ts"
], ]
} }