2017-12-06 00:53:03 +03:00
|
|
|
{
|
2018-02-03 02:09:05 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "dist",
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
|
|
|
"module": "commonjs",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"noEmitHelpers": false,
|
|
|
|
"target": "es2017",
|
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"es2017"
|
|
|
|
],
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"newLine": "LF"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"**/*.d.ts"
|
|
|
|
]
|
|
|
|
}
|