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": {
"lineComment": "@c",
"lineComment": "@c"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["(", ")"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "'"],
],
["`", "'"]
]
}

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