Files
wehub-resource-sync 0232b4e2bb
CI / build (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:09:51 +08:00

43 lines
800 B
JSON

{
"extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
"compilerOptions": {
"target": "ES2020",
"lib": [
"DOM",
"ES2020"
],
"types": [
"node"
],
"moduleResolution": "bundler",
"module": "ESNext",
"jsx": "react-jsx",
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"isolatedModules": true,
"resolveJsonModule": true,
"useDefineForClassFields": true,
"allowImportingTsExtensions": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@components/*": [
"components/*"
],
}
},
"include": [
"src",
"rspress.config.ts",
"src/zh/playground/canvas-engine/components",
"components",
"scripts"
],
"mdx": {
"checkMdx": true
}
}