* chore(tracker):exclude test files from compilation * feat(tracker): webworker unit tests * fix(tracker): no empty tests * change(tracker): add jest test to workflow * change(tracker): fix jest run --------- Co-authored-by: nick-delirium <nikita@openreplay.com>
15 lines
320 B
JSON
15 lines
320 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"alwaysStrict": true,
|
|
"target": "es6",
|
|
"module": "es6",
|
|
"moduleResolution": "nodenext"
|
|
},
|
|
"exclude": ["**/*.test.ts"]
|
|
}
|