forked from PostHog/wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (34 loc) · 850 Bytes
/
Copy pathtsconfig.json
File metadata and controls
35 lines (34 loc) · 850 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
27
28
29
30
31
32
33
34
35
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"types": ["node"],
"typeRoots": ["./node_modules/@types", "./types"],
"declaration": true,
"resolveJsonModule": true,
"outDir": "dist"
},
"include": [
"__tests__",
"__mocks__/**/*",
"index.ts",
"bin.ts",
"tsdown.config.ts",
"vitest.config.ts",
"src/lib/**/*",
"spec/**/*",
"src/**/*",
"test/**/*",
"e2e-harness/**/*",
"types/**/*"
],
"exclude": [
// e2e-tests is a standalone package (own package.json, own jest + ts-jest,
// excluded from the pnpm workspace) and typechecks itself in its own
// context. The root unit-test typecheck no longer carries jest types, so it
// must not pull e2e's jest-based config/specs into scope.
"e2e-tests/**/*"
],
"ts-node": {
"files": true
}
}