Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed Mar 19, 2022
1 parent 0dbd4ec commit ac187fa
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .husky/pre-push

This file was deleted.

2 changes: 1 addition & 1 deletion coverage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,19 @@
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.*\\.test\\.ts$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"],
"coverageReporters": ["json-summary", "text", "lcov"],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
Expand Down
13 changes: 11 additions & 2 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"compilerOptions": {
"lib": ["es5", "es6", "es7", "esnext", "dom"],
"lib": [
"es5",
"es6",
"es7",
"esnext",
"dom"
],
"target": "es2018",
"removeComments": false,
"esModuleInterop": true,
Expand All @@ -16,5 +22,8 @@
"downlevelIteration": true,
"isolatedModules": true
},
"include": ["./src/**/*", "./.eslintrc.js"]
"include": [
"./src/**/*",
"./.eslintrc.js"
]
}
5 changes: 4 additions & 1 deletion tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"declarationMap": false,
"sourceMap": false
},
"exclude": ["./src/**/__tests__", "./src/playground.ts"]
"exclude": [
"./src/**/__tests__",
"./src/playground.ts"
]
}
5 changes: 4 additions & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"declarationMap": false,
"sourceMap": false
},
"exclude": ["./src/**/__tests__", "./src/playground.ts"]
"exclude": [
"./src/**/__tests__",
"./src/playground.ts"
]
}
5 changes: 4 additions & 1 deletion tsconfig.types.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"declarationMap": true,
"emitDeclarationOnly": true
},
"exclude": ["./src/**/__tests__", "./src/playground.ts"]
"exclude": [
"./src/**/__tests__",
"./src/playground.ts"
]
}

0 comments on commit ac187fa

Please sign in to comment.