-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathtsconfig.json
More file actions
21 lines (21 loc) · 818 Bytes
/
Copy pathtsconfig.json
File metadata and controls
21 lines (21 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"noEmit": true,
"noErrorTruncation": true,
"sourceMap": true,
"declaration": true,
"paths": {
"crawlee": ["./packages/crawlee/src/index.ts"],
"@crawlee/basic": ["./packages/basic-crawler/src/index.ts"],
"@crawlee/browser": ["./packages/browser-crawler/src/index.ts"],
"@crawlee/http": ["./packages/http-crawler/src/index.ts"],
"@crawlee/cheerio": ["./packages/cheerio-crawler/src/index.ts"],
"@crawlee/playwright": ["./packages/playwright-crawler/src/index.ts"],
"@crawlee/puppeteer": ["./packages/puppeteer-crawler/src/index.ts"],
"@crawlee/stagehand": ["./packages/stagehand-crawler/src/index.ts"],
"@crawlee/core/internal": ["./packages/core/src/internal.ts"],
"@crawlee/*": ["./packages/*/src/index.ts"]
}
}
}