Files
page-agent/tsconfig.base.json
T

33 lines
891 B
JSON
Raw Normal View History

{
2026-01-17 16:15:36 +08:00
"compilerOptions": {
"composite": true,
"target": "ES2024",
"useDefineForClassFields": true,
"lib": ["ES2024", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"allowJs": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
2026-01-17 16:15:36 +08:00
// "baseUrl": "src",
"baseUrl": ".",
"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
}
}