2019-01-12 02:38:50 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"newLine": "LF",
|
2019-02-09 03:43:28 +03:00
|
|
|
"target": "es2015",
|
2019-01-12 02:38:50 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"esModuleInterop": true,
|
2019-01-18 00:45:41 +03:00
|
|
|
"lib": [
|
2019-02-01 23:45:22 +03:00
|
|
|
"es2015",
|
|
|
|
"dom"
|
2019-01-18 00:45:41 +03:00
|
|
|
]
|
2019-01-12 02:38:50 +03:00
|
|
|
},
|
|
|
|
"compileOnSave": true,
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"./lib/**/*.ts",
|
|
|
|
"./test/**/*.ts"
|
|
|
|
]
|
|
|
|
}
|