Update: vscode中路径别名支持跳转到对应文件

This commit is contained in:
王立帮
2024-12-23 13:42:18 +08:00
parent 1bf7ec2e93
commit 9d44a00968
17 changed files with 300 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"baseUrl": "./",
"paths": {
"@mixly/python": [
"../python"
],
"@mixly/python-mixpy": [
"../python_mixpy"
]
}
},
"exclude": [
"node_modules",
"dist"
]
}