AppFlowy/frontend/appflowy_web_app/tsconfig.json
Kilu.He 4d42c9ea68
feat: support document apply remote events (#5436)
* feat: support document apply remote events

* fix: add tests for database

* fix: add test for filter,sort and group

* fix: jest ci

* fix: jest ci

* fix: jest ci

* fix: jest ci

* fix: cypress test
2024-06-03 11:20:45 +08:00

63 lines
1.2 KiB
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"preserveValueImports": false,
"noEmit": true,
"jsx": "react-jsx",
"types": [
"cypress",
"node",
"jest"
],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"src/*": [
"src/*"
],
"$client-services": [
"src/application/services/js-services"
],
"$icons/*": [
"../resources/flowy-flowy_icons/*"
]
}
},
"include": [
"src",
"vite.config.ts",
"cypress.config.ts",
"cypress"
],
"exclude": [
"node_modules",
"dist",
"coverage"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}