fix: Use AST to replace notes & warnings.

This commit is contained in:
Sidharth Vinod
2022-10-28 14:13:24 +05:30
parent 6b3892baf1
commit d7bf92b39f
11 changed files with 68 additions and 127 deletions

11
.vscode/launch.json vendored
View File

@@ -12,6 +12,17 @@
"args": ["run", "${relativeFile}"],
"smartStep": true,
"console": "integratedTerminal"
},
{
"name": "Docs generation",
"type": "node",
"request": "launch",
"args": ["src/docs.mts"],
"runtimeArgs": ["--loader", "ts-node/esm"],
"cwd": "${workspaceRoot}/packages/mermaid",
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
"smartStep": true,
"internalConsoleOptions": "openOnSessionStart"
}
]
}