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