mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2026-04-17 23:00:17 +00:00
- sets up ts-jest for typescript tests - various type improvements, some shared functions add in utils.ts - fixes sitemap test to not check sitemapDone, as it does not mean all URLs have been queued, uses sitemap path to avoid redirect --------- Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
13 lines
260 B
JSON
13 lines
260 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"],
|
|
"exclude": [
|
|
"tests/custom-behaviors/**/*",
|
|
"tests/fixtures/**/*",
|
|
"tests/invalid-behaviors/**/*"
|
|
]
|
|
}
|