AppFlowy/frontend/appflowy_web_app/tsconfig.json

52 lines
927 B
JSON
Raw Permalink Normal View History

{
"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/*"
],
"src/*": [
"src/*"
],
"$client-services": [
"src/application/services/js-services"
]
}
},
"include": [
"src",
"vite.config.ts"
],
"exclude": [
"node_modules"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}