blob: adff015ab05f8c59f2cc16d7352781633e38df47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
// Enable eslint validation for js and ts files
"eslint.validate": ["javascript", "typescript"],
// Always use the `package.json`'s `typescript`
"typescript.tsdk": "node_modules/typescript/lib",
"files.associations": {
"*.json5": "jsonc"
},
"yaml.schemas": {
"https://json.schemastore.org/codecov.json": ".github/.codecov.yml"
}
}
|