fix: add tsconfig.base.json and revert strict mode for CC_Pure compatibility

This commit is contained in:
James Feng 2026-06-01 23:51:07 +08:00
parent 539c6f0e0c
commit c4b3dd1f50
2 changed files with 16 additions and 1 deletions

15
tsconfig.base.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"types": ["bun", "@types/node"]
}
}

View File

@ -5,7 +5,7 @@
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"strict": false,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,