2018-05-14 09:24:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-07-29 08:06:38 +03:00
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
"target": "es5",
|
2018-05-14 09:24:59 +03:00
|
|
|
"module": "es2015",
|
2018-07-29 08:06:38 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
2018-05-14 09:24:59 +03:00
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitUseStrict": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2018-08-12 17:14:11 +03:00
|
|
|
"typeRoots": ["node_modules/@types", "node_modules"],
|
|
|
|
"types": ["node", "lodash-es"],
|
2018-05-14 09:24:59 +03:00
|
|
|
"baseUrl": "/"
|
|
|
|
},
|
2018-08-12 17:14:11 +03:00
|
|
|
"include": ["index.ts", "lib/**/*"],
|
2018-09-01 22:36:41 +03:00
|
|
|
"exclude": ["lib/**/*.spec.ts", "lib/mock/*"]
|
2018-05-14 09:24:59 +03:00
|
|
|
}
|