mirror of
https://github.com/web-infra-dev/midscene.git
synced 2026-01-08 05:02:26 +00:00
* fix(web): fix sharp deps * chore: optimize sharp deps * refactor(extract): migrate sharp to jimp * refactor: migrate img common logic to shared lib * chore: merge main branch * chore: merge main branch * chore: merge main branch * chore: delete unless code * chore: optimize code * chore: optimize ai test branch trigger method * chore: optimize ai test branch trigger method * chore: optimize trigger method
24 lines
520 B
JSON
24 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
},
|
|
"exclude": ["**/node_modules"],
|
|
"include": ["src"]
|
|
}
|