mirror of
https://github.com/cloudflare/cloudflare-docs.git
synced 2026-01-11 20:06:58 +00:00
* [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>
21 lines
474 B
JSON
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
|
|
}
|
|
}
|