70bf21e064
Handle Changesets / Handle Changesets (push) Waiting to run
Semgrep OSS scan / semgrep-oss (push) Waiting to run
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
33 lines
818 B
JSON
33 lines
818 B
JSON
{
|
|
"root": true,
|
|
"extends": "@cloudflare/workers-tsconfig/tsconfig.json",
|
|
"include": ["**/*.ts", "**/*.mts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"scripts/snippets/*",
|
|
"e2e/tests/frameworks/fixtures/*",
|
|
// exclude all template files other than those are directly imported into the program,
|
|
// e.g. the c3.ts files.
|
|
"templates*"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"helpers/*": ["./src/helpers/*"],
|
|
"templates/*": ["./templates/*"],
|
|
"templates-experimental/*": ["./templates-experimental/*"],
|
|
"frameworks/*": ["./src/frameworks/*"],
|
|
"types": ["./src/types.ts"]
|
|
}
|
|
}
|
|
}
|