-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 967 Bytes
/
Copy pathtsconfig.json
File metadata and controls
26 lines (26 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"extends": "@apify/tsconfig",
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "Bundler",
"skipLibCheck": true,
"noEmit": true,
// tests/test_kit self-references the package by name (works unchanged for a
// real install or the workspace-linked repo, since Node resolves it via our
// own "exports" map either way). Alias it to live source here so whole-repo
// type-check (no build step, see AGENTS.md) doesn't need dist/ to exist first —
// `tsc -b` project builds still work unaliased since src builds before test_kit.
"paths": {
"@apify/actors-mcp-server/internals.js": ["./src/index_internals.ts"],
"@apify/actors-mcp-server/internals/test-kit.js": ["./src/index_internals_test_kit.ts"]
}
},
"include": [
"src/**/*",
"tests/**/*",
"evals/**/*"
],
"exclude": [
"src/web"
]
}