mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
We are adding MDX files to `.gitignore` for now since they are just a result of a build process, once the migration is done, we will not ignore them. We're using PNPM workspaces to manage this project. The new project's tsconfig.json has been copied from the current root tsconfig.json while omitting some details that are only relevant to that project. `help-beta/src/env.d.ts` is a type declaration file auto-generated by Astro. See https://github.com/withastro/astro/issues/6013.
28 lines
671 B
JSON
28 lines
671 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Type Checking */
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
|
|
/* Emit */
|
|
"noEmit": true,
|
|
|
|
/* Interop Constraints */
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
|
|
/* Language and Environment */
|
|
"target": "esnext",
|
|
|
|
/* Projects */
|
|
"composite": true,
|
|
},
|
|
}
|