2025-11-28 16:49:36 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"module": "CommonJS",
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"lib": ["ES2020"],
|
2026-01-14 16:54:47 +08:00
|
|
|
"typeRoots": ["./typings"],
|
2025-11-28 16:49:36 +08:00
|
|
|
"paths": {
|
2026-01-14 16:54:47 +08:00
|
|
|
"tdesign-miniprogram/*": ["./miniprogram/miniprogram_npm/tdesign-miniprogram/*"],
|
|
|
|
|
"@/*": ["miniprogram/*"]
|
|
|
|
|
},
|
|
|
|
|
"baseUrl": "./"
|
2025-11-28 16:49:36 +08:00
|
|
|
},
|
2026-01-14 16:54:47 +08:00
|
|
|
"include": ["./**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules"]
|
2025-11-28 16:49:36 +08:00
|
|
|
}
|
2026-01-14 16:54:47 +08:00
|
|
|
|