stack/apps/e2e/tsconfig.json
2024-06-18 16:19:43 +02:00

18 lines
385 B
JSON

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