mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00
19 lines
523 B
JSON
19 lines
523 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"editor.tabSize": 2,
|
|
"editor.rulers": [110],
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"editor.wordWrapColumn": 110,
|
|
"prettier.singleQuote": true,
|
|
"prettier.printWidth": 110,
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.DS_Store": true,
|
|
"**/node_modules/": true,
|
|
"**/dist/": true,
|
|
"coverage": true,
|
|
"coverage.lcov": true
|
|
},
|
|
"typescript.tsdk": "node_modules/typescript/lib"
|
|
}
|