20 lines
442 B
JSON
20 lines
442 B
JSON
{
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"prettier.semi": false,
|
|
"prettier.singleQuote": true,
|
|
"prettier.typescriptEnable": ["typescript"],
|
|
"editor.trimAutoWhitespace": true,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true
|
|
},
|
|
"search.exclude": {
|
|
"lib/**/*": true,
|
|
"**/node_modules": true,
|
|
"**/bower_components": true
|
|
}
|
|
}
|