2017-09-13 19:42:16 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"sourceMap": true,
|
|
|
|
"newLine": "LF",
|
2018-01-29 20:01:54 +03:00
|
|
|
"target": "es5",
|
2017-09-13 19:42:16 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
2018-10-04 23:47:11 +03:00
|
|
|
"declarationMap": true,
|
2018-05-31 21:21:11 +03:00
|
|
|
"importHelpers": true,
|
2018-09-20 20:02:51 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2017-09-13 19:42:16 +03:00
|
|
|
"lib": [
|
|
|
|
"es5",
|
|
|
|
"es6",
|
|
|
|
"es7",
|
|
|
|
"esnext",
|
|
|
|
"esnext.asynciterable",
|
|
|
|
"es2015.iterable"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./lib/**/*.ts",
|
2018-05-07 23:35:49 +03:00
|
|
|
"./samples/**/*.ts",
|
2017-09-13 19:42:16 +03:00
|
|
|
"./test/**/*.ts"
|
|
|
|
]
|
2019-01-22 22:46:55 +03:00
|
|
|
}
|