* added plugin * updated plugin + added component * dummy data TO BE REMOVED * (wip) workflow generator tool * add workflow generator tooling * updated the generator tool * added code file creation * fix design of diagrams * configured diagram theme * added build script * removed comments + unnecessary files * general fixes * refactored plugin * added README + more output types
21 lines
432 B
JSON
21 lines
432 B
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "Node16",
|
|
"moduleResolution": "node16",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
},
|
|
"include": ["src"],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
"transpileOnly": true
|
|
}
|
|
}
|