chat-flow/tsconfig.json

48 lines
864 B
JSON
Raw Permalink Normal View History

2025-07-29 08:45:22 +08:00
{
"baseUrl": ".", // This has to be specified if "paths" is.
"compilerOptions": {
"baseUrl": ".",
"target": "ES2020",
"lib": [
"dom",
"dom.iterable",
"ES2021.String",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
],
"@i18n/*": [
"./i18n/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}