vscode/extensions/typescript-basics/schemas/tsconfig.schema.json
JYX f448ddebe3 Update tsconfig.schema.json (#58582)
It's actually a config for ts compiler not for js.
2018-09-13 23:47:33 -07:00

13 lines
203 B
JSON

{
"title": "JSON schema for the TypeScript compiler's configuration file",
"type": "object",
"default": {
"compilerOptions": {
"module": "commonjs"
},
"exclude": [
"node_modules"
]
}
}