2017-09-13 22:30:50 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"newLine": "LF",
|
2018-04-11 01:45:58 +03:00
|
|
|
"target": "es5",
|
2017-09-13 22:30:50 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2018-04-11 01:45:58 +03:00
|
|
|
"outDir": "dist",
|
2017-09-13 22:30:50 +03:00
|
|
|
"strict": true,
|
2018-04-11 01:45:58 +03:00
|
|
|
"declaration": true,
|
2018-10-05 00:50:00 +03:00
|
|
|
"declarationMap": true,
|
2018-06-01 01:38:24 +03:00
|
|
|
"importHelpers": true,
|
2018-10-05 00:50:00 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2017-09-13 22:30:50 +03:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"es5",
|
|
|
|
"es6",
|
|
|
|
"es7",
|
|
|
|
"esnext",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"es2015.iterable"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./lib/**/*.ts",
|
|
|
|
"./test/**/*.ts"
|
|
|
|
]
|
2018-06-01 01:38:24 +03:00
|
|
|
}
|