chore: remove tsc build from local workspaces (#2020)

This commit is contained in:
Mo
2022-11-16 18:13:28 -06:00
committed by GitHub
parent 87e66e2342
commit 4fa8066402
31 changed files with 85 additions and 156 deletions

19
common.jest.json Normal file
View File

@@ -0,0 +1,19 @@
{
"collectCoverageFrom": ["src/**/*.{ts,tsx}", "!**/index.ts"],
"coverageReporters": ["text", "lcov", "html", "json-summary"],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": ["/node_modules/"],
"coveragePathIgnorePatterns": ["/node_modules/"],
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"],
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "tsconfig": "tsconfig.json" }]
},
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}