Files
HKSingleParty/03_source/frontend/tsconfig.json
louiscklaw 45bac1b3c8 update,
2025-06-15 03:50:15 +08:00

51 lines
916 B
JSON

{
"compilerOptions": {
/* Bundler */
"baseUrl": ".",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"resolveJsonModule": true,
/* Build */
"target": "ES2020",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "bundler",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
/* Linting */
"strict": true,
"noEmit": true,
"strictNullChecks": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
".next",
//
"**/* copy *.tsx",
"**/* copy.tsx",
"**/*.bak",
"**/*.bak",
"**/*.bug",
"**/*.del",
"**/*.draft",
"**/*.log",
"**/*.tmp",
"**/*del"
],
"references": [
{
"path": "./tsconfig.node.json"
}
],
}