-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 807 Bytes
/
Copy pathtsconfig.json
File metadata and controls
22 lines (22 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true,
// ctImportWorker.ts imports ctImport with an explicit .ts extension —
// required so Node's own built-in TypeScript loader (no build step)
// can run ctImportWorker.ts directly as a worker_thread entry in tests
// (see ctImportSafe.ts's resolveWorkerScriptPath for why). This
// project never uses tsc to emit (vite/esbuild does the actual
// build), so allowing it here is safe — nothing consumes a tsc build
// output that would need extension rewriting.
"allowImportingTsExtensions": true,
"types": ["node"]
},
"include": ["src"]
}