2018-01-03 21:20:58 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-04-21 23:14:04 -04:00
|
|
|
"pretty": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"moduleResolution": "node",
|
2018-04-18 12:59:48 -04:00
|
|
|
"target": "ES6",
|
|
|
|
"module": "commonjs",
|
2018-06-11 13:32:53 -04:00
|
|
|
"lib": ["es5", "es6", "dom"],
|
2018-01-06 16:04:16 +01:00
|
|
|
"sourceMap": true,
|
2018-01-05 22:46:51 -05:00
|
|
|
"declaration": true,
|
2018-01-06 16:04:16 +01:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"declarationDir": "dist/types",
|
2018-04-18 12:59:48 -04:00
|
|
|
"outDir": "dist",
|
2018-01-06 16:04:16 +01:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
2018-01-08 14:11:28 -05:00
|
|
|
]
|
2018-01-03 21:20:58 -05:00
|
|
|
},
|
2018-01-05 22:46:51 -05:00
|
|
|
"include": [
|
2018-04-18 12:59:48 -04:00
|
|
|
"src",
|
|
|
|
"spec"
|
2018-01-03 21:20:58 -05:00
|
|
|
]
|
|
|
|
}
|