Git Product home page Git Product logo

angular-tsconfig's Introduction

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"

angular-tsconfig's People

Contributors

renovate-bot avatar splincode avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Forkers

splincode

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.