2018-09-07 02:07:49 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"newLine": "lf",
|
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist",
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
|
|
|
"include": [
|
2018-09-14 03:53:38 +03:00
|
|
|
"src",
|
|
|
|
"lib.d.ts",
|
2018-09-07 02:07:49 +03:00
|
|
|
]
|
|
|
|
}
|