2018-06-15 08:13:33 +02:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig",
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
2018-06-20 12:21:52 +02:00
|
|
|
"noImplicitAny": true,
|
2018-06-15 08:13:33 +02:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
2018-06-18 19:36:51 -07:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"types": ["node", "jest"]
|
2018-06-15 08:13:33 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
2018-06-18 19:36:51 -07:00
|
|
|
"exclude": ["node_modules", "**/__tests__/*", "**/__mocks__/*"]
|
2018-06-15 08:13:33 +02:00
|
|
|
}
|