Skip to content

Commit 06d9e65

Browse files
authored
feat(release): 0.0.3 (#4)
1 parent 91b7831 commit 06d9e65

File tree

11 files changed

+2078
-6095
lines changed

11 files changed

+2078
-6095
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ artifacts/
55
logs
66
*.log
77
tsconfig.tsbuildinfo
8-
8+
coverage/
99
## General ##
1010
*~
1111
\#*\#

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: gitignore; -*-
2+
scripts/
3+
test/
4+
.github/
5+
.git/
6+
7+
docs/

jest.config.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2+
module.exports = {
3+
preset: 'ts-jest',
4+
testEnvironment: 'node',
5+
coverageReporters: ["html", "lcov", ["text", {"skipFull": true}]],
6+
collectCoverage: true,
7+
verbose: true,
8+
transform: {
9+
"^.+\\.tsx?$": 'ts-jest'
10+
},
11+
testPathIgnorePatterns: [
12+
"/build/",
13+
"/node_modules/",
14+
],
15+
testRegex: '/__tests__/.*\\.test\\.ts$',
16+
moduleFileExtensions: [
17+
'ts',
18+
'tsx',
19+
'js',
20+
'jsx',
21+
'json',
22+
'node'
23+
],
24+
globals: {
25+
'ts-jest': {
26+
diagnostics: {
27+
// Do not fail on TS compilation errors
28+
// https://kulshekhar.github.io/ts-jest/user/config/diagnostics#do-not-fail-on-first-error
29+
warnOnly: true
30+
}
31+
}
32+
},
33+
};

0 commit comments

Comments
 (0)