apps/web/tsconfig.json
Metadata
- Purpose: TypeScript compilation and type-check configuration.
- Domain:
applications - Language:
json - Bytes: 407
- Lines: 19
- Content hash (short):
5983b8db - Source (start): apps/web/tsconfig.json:1
- Source (end): apps/web/tsconfig.json:19
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "preserve",
"allowJs": true,
"noEmit": true,
"isolatedModules": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}