cloudflare-docs/.github/actions/show-changed-files/tsconfig.json
Kian 53c75e4255
[Docs Site] Post Workers preview URL on PRs (#19670)
* [Docs Site] Post Workers preview URL on PRs

* fix var checks

* edit-last fails if no comment already exists

* token permissions

* fix permissions location

* jq raw output

* remove pages prod deploy

* update show-changed-files workflow

* Update .github/actions/show-changed-files/readme.md

Co-authored-by: Pedro Sousa <680496+pedrosousa@users.noreply.github.com>

---------

Co-authored-by: Pedro Sousa <680496+pedrosousa@users.noreply.github.com>
2025-02-05 20:04:01 +00:00

21 lines
474 B
JSON

{
"compilerOptions": {
// Treat files as modules even if it doesn't use import/export
"moduleDetection": "force",
// Ignore module structure
"module": "Preserve",
// Allow JSON modules to be imported
"resolveJsonModule": true,
// Allow JS files to be imported from TS and vice versa
"allowJs": true,
// Use correct ESM import behavior
"esModuleInterop": true,
// Disallow features that require cross-file awareness
"isolatedModules": true
}
}