mirror of
https://github.com/web-infra-dev/midscene.git
synced 2026-01-07 20:50:48 +00:00
* workflow(ci): format code * workflow(ci): format code * workflow(ci): format code * workflow(ci): format code * workflow(ci): format code
24 lines
573 B
JSON
24 lines
573 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"target": "ES2017",
|
|
"resolveJsonModule": true,
|
|
"rootDir": "./",
|
|
"skipLibCheck": true,
|
|
"strict": true
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src", "tests", "./playwright.config.ts", "./vitest.config"]
|
|
}
|