* Added the @shared webpack alias to the project. * Added some documentation. * Fixed a copy paste error. * Renamed @shared to @components. * Update docs/frontend/webpacker.md Co-authored-by: Suzanne Aitchison <suzanne@forem.com> Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
11 lines
291 B
JSON
11 lines
291 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@crayons/*": ["app/javascript/crayons/*"],
|
|
"@utilities/*": ["app/javascript/utilities/*"],
|
|
"@components/*": ["app/javascript/shared/components/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "**/node_modules/*"]
|
|
}
|