Files
page-agent/tsconfig.base.json
T

32 lines
823 B
JSON
Raw Normal View History

{
2026-01-17 16:15:36 +08:00
"compilerOptions": {
"target": "ES2024",
"useDefineForClassFields": true,
"lib": ["ES2024", "DOM"],
2026-01-17 16:15:36 +08:00
"module": "ESNext",
"skipLibCheck": true,
"allowJs": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
2026-01-17 16:15:36 +08:00
"outDir": "dist",
// "incremental": true,
2026-01-17 16:15:36 +08:00
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
"noEmit": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
2026-01-17 16:15:36 +08:00
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"types": ["node"]
2026-01-17 16:15:36 +08:00
}
}