2023-01-17 08:27:17 +00:00
|
|
|
{
|
|
|
|
"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,
|
2023-03-09 05:52:48 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"types": ["node", "jest"],
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"],
|
2023-05-01 07:40:56 +00:00
|
|
|
"$app/*": ["src/appflowy_app/*"],
|
2023-12-18 09:44:47 +00:00
|
|
|
"$app_reducers/*": ["src/appflowy_app/stores/reducers/*"],
|
|
|
|
"src/*": ["src/*"]
|
2023-09-12 12:49:03 +00:00
|
|
|
}
|
2023-01-17 08:27:17 +00:00
|
|
|
},
|
2023-12-18 09:44:47 +00:00
|
|
|
"include": ["src", "vite.config.ts"],
|
2023-03-09 05:52:48 +00:00
|
|
|
"exclude": ["node_modules"],
|
2023-01-17 08:27:17 +00:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
|
|
}
|