maests
Version:
An executable compiler for creating Maestro's yaml-flows with typescript.
26 lines (25 loc) • 544 B
JSON
{
"compilerOptions": {
"module": "Preserve",
"moduleResolution": "Bundler",
"target": "ESNext",
"sourceMap": true,
"outDir": "dist",
"declaration": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": ["vitest/importMeta", "vitest/globals"],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"src/**/*",
"fixtures/**/*",
"maestro.d.ts",
"**/maestro-ext.d.ts",
"playground",
"__tests__"
],
"exclude": ["node_modules", "dist", "playground"]
}