Files
YTChatHub/client/tsconfig.json
T

35 lines
534 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"types": [
"next",
"next/types/global",
"next/image-types/global"
],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"noEmit": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}