Files
page-agent/tsconfig.base.json
2026-04-13 16:07:24 +08:00

31 lines
791 B
JSON

{
"compilerOptions": {
"target": "es2025",
"useDefineForClassFields": true,
"lib": ["ESNext", "DOM"],
"module": "esnext",
"skipLibCheck": true,
"allowJs": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
"outDir": "dist",
/* Bundler mode */
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
"noEmit": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"types": ["node"]
}
}