2016-06-10 17:05:39 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2016-06-18 10:19:51 -07:00
|
|
|
"target": "es6",
|
2016-06-10 17:05:39 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
2016-06-10 20:47:22 -04:00
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./dist",
|
2016-10-03 23:13:08 +03:00
|
|
|
"allowSyntheticDefaultImports": false,
|
2016-06-10 17:05:39 -07:00
|
|
|
"pretty": true,
|
2016-10-03 23:13:08 +03:00
|
|
|
"removeComments": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"types": [
|
|
|
|
"typed-graphql",
|
|
|
|
"@types/node"
|
|
|
|
]
|
2016-06-10 17:05:39 -07:00
|
|
|
},
|
2016-06-12 22:28:36 -07:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
]
|
2016-06-10 17:05:39 -07:00
|
|
|
}
|