mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00

* Enable declarationMap in tsconfig.json See http://www.typescriptlang.org/docs/handbook/release-notes/typescript-2-9.html * Add apollo-server-caching package and improve typings * Remove superfluous test steps * Add .npmignore to apollo-server-caching * Add apollo-server-env and apollo-datasource-rest packages * Fix broken imports * Use prepublish instead of prepare * cache is now passed to data sources from ApolloServer constructor * fix Object.values to use the object passed in rather than this * add initial datasource test * docs: initial data source documentation * docs: initial data source documentation * compiles and documentation now highlights code in data-sources.md * Some changes to the data source docs
20 lines
554 B
JSON
20 lines
554 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,
|
|
"editor.formatOnSave": true,
|
|
"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"
|
|
}
|