mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
We are starting the cutover process and starlight_help is the directory we have agreed on to place our new help center project. We do not want to use `starlight_help` as the URL for the project, but this commit changes the url from `help-beta` to `starlight_help` temporarily since we can only change URL once we get rid of the current help center project. That will be done in a future commit.
36 lines
906 B
JSON
36 lines
906 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
/* Type Checking */
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
|
|
/* Modules */
|
|
"module": "preserve",
|
|
|
|
/* Emit */
|
|
"noEmit": true,
|
|
|
|
/* Interop Constraints */
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
|
|
/* Language and Environment */
|
|
"target": "esnext",
|
|
|
|
/* Projects */
|
|
"composite": true,
|
|
|
|
"types": ["unplugin-icons/types/astro"],
|
|
},
|
|
"include": [".astro/types.d.ts", "**/*", "src/.remarkrc.js"],
|
|
"exclude": ["dist"],
|
|
}
|