mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
27 lines
490 B
JSON
27 lines
490 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"#src/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"@vitest/browser/providers/playwright",
|
|
"vitest-browser-react",
|
|
"vitest/import-meta"
|
|
],
|
|
"noEmit": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"fixtures",
|
|
"test",
|
|
"specs",
|
|
"./vitest.config.*",
|
|
"./setup.unit.ts"
|
|
]
|
|
}
|