AppFlowy/frontend/appflowy_tauri/tsconfig.json
Kilu.He 0783f94cd6
chore: optimize the experience of the document (#4152)
* fix: scroll bug of grid

* chore: optimize the experience of the document

* fix: drag folder

* fix: add unit test to provider
2023-12-18 17:44:47 +08:00

31 lines
836 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/*"],
"src/*": ["src/*"]
}
},
"include": ["src", "vite.config.ts"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}