mirror of
https://github.com/web-infra-dev/midscene.git
synced 2026-01-06 12:11:08 +00:00
25 lines
525 B
JSON
25 lines
525 B
JSON
{
|
|
"compilerOptions": {
|
|
"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,
|
|
"types": ["react"],
|
|
},
|
|
"exclude": ["**/node_modules"],
|
|
"include": ["src"]
|
|
}
|
|
|