stack/apps/e2e/tsconfig.json
2024-06-18 18:38:30 +02:00

18 lines
382 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
},
"include": ["tests/**/*"],
"exclude": ["node_modules", "dist"]
}