70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
18 lines
587 B
JSON
18 lines
587 B
JSON
// TSConfig for emitting types, which happens separately from on-the-fly typechecking.
|
|
// See `scripts/emit-types.ts` and `package.json[scripts][emit-types]`
|
|
|
|
//? TODO - Figure out if this can be part of the TurboRepo pipeline then move this into the workers-tsconfig package as "wrangler-emit"
|
|
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"incremental": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "emitted-types"
|
|
},
|
|
"files": ["src/cli.ts"],
|
|
"include": ["src/*.d.ts"]
|
|
}
|