Files
stack/apps/e2e/tsconfig.json
T
2025-02-14 11:47:52 -08:00

21 lines
430 B
JSON

{
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "tests",
"declaration": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"noErrorTruncation": true,
"strict": true,
"skipLibCheck": true,
"types": [
"vitest/importMeta"
]
},
"include": ["tests/**/*"],
"exclude": ["node_modules", "dist"]
}