1.0.1 • Published 2 years ago
@ae_utbm/core v1.0.1
@ae_utbm/core
Repository that contains all typings & constants variables used across all projects of the AE UTBM.
Installation
Use the package manager npm to install @ae_utbm/core.
npm install @ae_utbm/coreOnce installed, modify your tsconfig.json file to add the following lines:
{
  "compilerOptions": {
    // ...
    "typeRoots": ["node_modules/@ae_utbm/core/types"]
    // ...
  },
  "include": ["node_modules/@ae_utbm/core/types/**/*"]
}As we are overriding the default libs types of TypeScript, you should also add the following lines to your package.json file:
{
  "dependencies": {
    // ...
    "@typescript/lib-dom": "npm:@ae_utbm/core",
    "@typescript/lib-es2015": "npm:@ae_utbm/core",
    "@typescript/lib-es5": "npm:@ae_utbm/core",
    // ...
  }
}