mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
0783f94cd6
* fix: scroll bug of grid * chore: optimize the experience of the document * fix: drag folder * fix: add unit test to provider
31 lines
836 B
JSON
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" }]
|
|
}
|