typescript-fsm
Version:
finite state machine with async callbacks
20 lines • 442 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "./dist",
"sourceMap": true,
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noImplicitAny": true,
"declaration": true,
},
"include": [
"src/**/*",
"*.config.js",
]
}