vscode/extensions/typescript-language-features/schemas/tsconfig.schema.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
233 B
JSON
Raw Normal View History

2016-01-28 13:42:10 +00:00
{
"allowTrailingCommas": true,
"title": "JSON schema for the TypeScript compiler's configuration file",
2016-01-28 13:42:10 +00:00
"type": "object",
"default": {
"compilerOptions": {
"module": "commonjs"
},
"exclude": [
"node_modules"
]
}
}