Files
HKSingleParty/03_source/cms_backend/tsconfig.json
louiscklaw db805f23b6 update
2025-05-28 21:06:12 +08:00

55 lines
991 B
JSON

{
"compilerOptions": {
"allowJs": true,
/* Bundler */
"baseUrl": ".",
"esModuleInterop": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
/* Plugins */
"plugins": [
{
"name": "next"
}
],
"resolveJsonModule": true,
"skipLibCheck": true,
/* Linting */
"strict": true,
"strictNullChecks": true,
/* Build */
"target": "ES2017",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo"
},
"exclude": [
"node_modules",
".next",
//
"**/* copy *.tsx",
"**/* copy.tsx",
"**/*.bak",
"**/*.bak",
"**/*.bug",
"**/*.del",
"**/*.draft",
"**/*.log",
"**/*.tmp",
"**/*del"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
]
}