43 lines
800 B
JSON
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
|
|
}
|
|
}
|