mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
22 lines
432 B
JSON
22 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "react",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"types": ["@testing-library/jest-dom"],
|
|
"strict": true,
|
|
"declaration": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"./vitest.setup.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|