| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "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
- }
- }
|