Socket
Book a DemoInstallSign in
Socket

emit-decorator-circular-reflect-metadata

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emit-decorator-circular-reflect-metadata

Add support circular import on typescript emit decorator metadata

1.0.2
latest
Source
npmnpm
Version published
Weekly downloads
2
100%
Maintainers
1
Weekly downloads
 
Created
Source

Emit Decorator Circular reflect-metadata

Add support circular import on typescript emit decorator metadata

Licence NPM version Discord

Install

npm install -s emit-decorator-circular-reflect-metadata
npm install -D emit-decorator-circular-loader

tsconfig.json


{
    // [...]
    
    "compilerOptions": {
        
        "experimentalDecorators": true,
        "emitDecoratorMetadata": true,
        "types": [
            "reflect-metadata"
            
            // [...]
        ],
        
        // [...]
    }
    // [...]
}

Webpack


module.exports = {
    
    // [...]
    
    module: {
        rules: [
        
            // [...]
        
            {
                test: /\.tsx?$/,
                use: [
                    
                    // [...]
                    
                    {
                        loader: 'emit-decorator-circular-loader'
                    },
                    {
                        loader: 'ts-loader',
                        // [...]
                    }
                    
                    // [...]
                ],
            }
            
            // [...]
    
        ]
    }
    
    // [...]

}

Use

Replace classic import:

import 'reflect-metadata';

By:

import 'emit-decorator-circular-reflect-metadata';

Example

This example not works if classic typescript whithout loader

file Book.ts


import {Author} from './Author';


@DecoratorClass()
export class Book {

    @DecoratorField()
    public author: Author;

}

file Author.ts


import {Book} from './Book';


@DecoratorClass()
export class Author {

    @DecoratorField()
    public author: Book;

}

Keywords

webpack

FAQs

Package last updated on 22 Nov 2023

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.