Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@angular-ru/tsconfig

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-ru/tsconfig

Angular-RU package

  • 15.303.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Shareable TypeScript config for Angular projects

Quick start

$ npm install @angular-ru/tsconfig -D

Add to your tsconfig.json:

{
    extends: '@angular-ru/tsconfig',
    angularCompilerOptions: {
        // override shared angularCompilerOptions
        strictTemplates: true,
        disableTypeScriptVersionCheck: true
    },
    compilerOptions: {
        // override shared compilerOptions
        outDir: 'dist',
        target: 'es2018',
        lib: ['es2018'],
        typeRoots: ['./node_modules/@types']
    }
}

If you want to know which properties were inherited, you can do:

$ tsc --showConfig --project tsconfig.json

FAQ

  • Uncaught ReferenceError: __importDefault is not defined in my Angular 8 project

In the eighth version, this is not fixed, so you need to add such a line:

polyfils.ts

(window as any)['__importDefault'] =
    (this && (this as any).__importDefault) ||
    function (mod: any): any {
        return mod && mod.__esModule ? mod : { default: mod };
    };

If you use Angular 9, this does not need to be done

// fixed since
"@angular-devkit/build-angular": "~0.900.0"

Keywords

FAQs

Package last updated on 09 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc