1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 05:19:39 +02:00

fix(build): restore aliases for uppercase imports [EE-4312] (#7723)

This commit is contained in:
itsconquest 2022-09-23 15:55:05 +12:00 committed by GitHub
parent 45e2ed3d86
commit c384d834f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,12 @@
"paths": {
// paths relative to the baseUrl
"@@/*": ["react/components/*"],
"@/*": ["./*", "../app/*"]
"@/*": ["./*", "../app/*"],
"Agent/*": ["agent/*"],
"Azure/*": ["azure/*"],
"Docker/*": ["docker/*"],
"Kubernetes/*": ["kubernetes/*"],
"Portainer/*": ["portainer/*"]
}
},
"exclude": ["api", "build", "dist", "distribution", "node_modules", "test", "webpack"],