-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 824 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (24 loc) · 824 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
{
"compilerOptions": {
"target": "esnext",
"module": "nodenext",
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"types": ["node"],
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"skipLibCheck": true
},
// Only src/**/* is compiled: tsc infers rootDir from this include set, which
// is what keeps the build flat (dist/index.js, not dist/src/index.js).
// Tests run straight from .ts via tsx (see "test" script) and benchmarks/
// loadtest are their own workspaces, so neither is part of this program.
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "tests", "benchmarks", "**/*.test.ts"]
}