Refactor to remove hardcoding of aliases

Unify definition of  aliases in single place.

Make TypeScript configuration file (`tsconfig.json`) source of truth
regarding aliases.

Both webpack (through `vue.config.js`) and ESLint (through
`.eslintrc.js`) now reads the alias configuration from `tsconfig.json`.
This commit is contained in:
undergroundwires
2022-02-02 19:28:12 +01:00
parent 5bbbb9cecc
commit 481a02afd5
3 changed files with 25 additions and 7 deletions

View File

@@ -29,8 +29,8 @@
],
"@tests/*": [
"tests/*"
],
},
]
}
},
"include": [
"src/**/*.ts",