apollo-server/tsconfig.json

20 lines
374 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"noImplicitAny": false,
"rootDir": "./src",
"outDir": "./dist",
"allowSyntheticDefaultImports": true,
"pretty": true,
"removeComments": true
},
2016-06-12 22:28:36 -07:00
"exclude": [
"node_modules",
"dist"
]
}