Files
lettersoup-online/002_source/cms/tsconfig.json
2025-04-21 03:40:36 +08:00

63 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "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,
"allowImportingTsExtensions": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": [
"node_modules",
".next",
"*.bak",
"*.log",
"*.tmp",
"*.bug",
"*.del",
"*.draft",
"**/* copy *.tsx",
"**/* copy.tsx"
],
"watchOptions": {
"excludeDirectories": [
"node_modules",
"_build",
"temp",
".next",
"_archive",
"_del"
//
],
"excludeFiles": [
//
"*.bak",
"*.log",
"*.tmp",
"*.bug",
"*.del",
"*.draft",
"* copy *.tsx",
"* copy.tsx"
]
}
}