2024-04-03 11:25:54 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"lib": [
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ESNext"
|
|
|
|
],
|
|
|
|
"allowJs": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": false,
|
2024-04-29 06:32:14 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2024-04-03 11:25:54 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2024-04-29 06:32:14 +00:00
|
|
|
"preserveValueImports": false,
|
2024-04-03 11:25:54 +00:00
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"types": [
|
2024-04-29 06:32:14 +00:00
|
|
|
"cypress",
|
2024-04-03 11:25:54 +00:00
|
|
|
"node",
|
|
|
|
"jest"
|
|
|
|
],
|
2024-05-17 10:23:29 +00:00
|
|
|
"baseUrl": ".",
|
2024-04-03 11:25:54 +00:00
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"src/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"$client-services": [
|
|
|
|
"src/application/services/js-services"
|
2024-05-17 10:23:29 +00:00
|
|
|
],
|
|
|
|
"$icons/*": [
|
|
|
|
"../resources/flowy-flowy_icons/*"
|
2024-04-03 11:25:54 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src",
|
2024-04-29 06:32:14 +00:00
|
|
|
"vite.config.ts",
|
|
|
|
"cypress.config.ts",
|
2024-07-08 05:45:57 +00:00
|
|
|
"cypress",
|
|
|
|
"deploy/server.ts"
|
2024-04-03 11:25:54 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
2024-06-03 03:20:45 +00:00
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"coverage"
|
2024-04-03 11:25:54 +00:00
|
|
|
],
|
|
|
|
"references": [
|
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|