2016-06-10 17:05:39 -07:00
|
|
|
{
|
2018-06-14 11:10:56 -07:00
|
|
|
"extends": "../../tsconfig.json",
|
2016-06-10 17:05:39 -07:00
|
|
|
"compilerOptions": {
|
2016-06-10 20:47:22 -04:00
|
|
|
"rootDir": "./src",
|
2018-07-04 21:18:25 +02:00
|
|
|
"outDir": "./dist",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noUnusedLocals": true
|
2016-06-10 17:05:39 -07:00
|
|
|
},
|
2018-01-09 00:08:01 +01:00
|
|
|
"include": ["src/**/*"],
|
2018-07-31 15:40:03 -07:00
|
|
|
"exclude": ["node_modules", "**/__tests__/*", "**/__mocks__/*"]
|
2016-06-10 17:05:39 -07:00
|
|
|
}
|