AppFlowy/frontend/appflowy_tauri/tsconfig.json
Kilu.He f5b23e5fc1
feat: Support heading block (#2376)
* feat: support transform heading block according to markdown

* fix: folder scroll
2023-05-01 15:40:56 +08:00

30 lines
848 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["node", "jest"],
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"$app/*": ["src/appflowy_app/*"],
"$app_reducers/*": ["src/appflowy_app/stores/reducers/*"],
},
},
"include": ["src", "vite.config.ts", "../app_flowy/assets/translations"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}