2019-05-15 13:40:29 +00:00
|
|
|
{
|
|
|
|
"extends": "./tsconfig",
|
|
|
|
"compilerOptions": {
|
2021-03-02 20:44:55 +00:00
|
|
|
"declaration": true,
|
2019-05-16 16:54:54 +00:00
|
|
|
"resolveJsonModule": false,
|
2020-05-07 08:23:45 +00:00
|
|
|
"noImplicitAny": false,
|
2019-07-23 08:34:02 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
2020-03-24 06:17:59 +00:00
|
|
|
"allowJs": false,
|
|
|
|
"checkJs": false,
|
2019-05-16 16:54:54 +00:00
|
|
|
"types": ["node"]
|
2019-05-16 11:42:25 +00:00
|
|
|
},
|
2020-03-24 06:17:59 +00:00
|
|
|
"exclude": [
|
|
|
|
"./.cache",
|
|
|
|
"./dist",
|
|
|
|
"**/__mocks__/**",
|
|
|
|
"**/__fixtures__/**",
|
2020-03-29 09:17:45 +00:00
|
|
|
"**/__testutil__/**",
|
2020-03-24 06:17:59 +00:00
|
|
|
"**/*.spec.ts",
|
2021-03-02 16:16:05 +00:00
|
|
|
"jest.config.ts",
|
2020-04-02 04:01:31 +00:00
|
|
|
"./test",
|
|
|
|
"./tools"
|
2020-03-24 06:17:59 +00:00
|
|
|
]
|
2019-05-15 13:40:29 +00:00
|
|
|
}
|