openreplay/tracker/tracker/tsconfig-base.json
Alex K 17008a694d
change(tracker): unit tests for tracker
* 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>
2023-02-06 12:42:18 +01:00

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"]
}