This repository has been archived on 2024-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
website/my-vue-app/jsconfig.json

20 lines
279 B
JSON
Raw Normal View History

2024-09-20 12:18:21 +00:00
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}