Files
Verso/services/web/tsconfig.json
T
Alf Eaton 30edd837e1 Use resolve.tsconfig (#31639)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
GitOrigin-RevId: 1c7da49e14af5935f85f1927186a825b116bb4e9
2026-05-20 08:06:05 +00:00

54 lines
1.4 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"allowJs": true,
"resolveJsonModule": true,
"jsx": "preserve",
"noEmit": true,
"strict": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@/*": ["./frontend/js/*"],
"@modules/*": ["./modules/*"],
"@overleaf/o-error": ["../../libraries/o-error"],
"@overleaf/ranges-tracker": ["../../libraries/ranges-tracker"],
"@ol-types/*": ["./types/*"],
"@ol-storybook/*": ["./.storybook/*"],
"@wf/*": ["./modules/writefull/frontend/js/integration/src/*"],
"@wf-tests/*": ["./modules/writefull/frontend/js/integration/tests/*"]
},
"types": [
"cypress",
"@testing-library/cypress",
"reflect-metadata",
"vitest/globals",
"@testing-library/jest-dom",
"@types/dom-speech-recognition"
]
},
"include": [
"frontend/js/**/*.*",
"modules/**/frontend/js/**/*.*",
"test/frontend/**/*.*",
"modules/**/test/frontend/**/*.*",
"frontend/stories/**/*.*",
"modules/**/stories/**/*.*",
".storybook/*.*",
"cypress",
"types"
],
"exclude": [
"**/*.min.js",
"modules/writefull/frontend/js/integration/src/vite-env.d.ts"
]
}