diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index b61ee23..9f90223 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,6 @@ "lib": ["es6", "dom", "es2017"], "allowJs": true, "checkJs": true, - "noEmit": true, "jsx": "react", "sourceMap": true, "outDir": "./build", @@ -28,7 +27,10 @@ "moduleResolution": "node", "esModuleInterop": true, - "typeRoots": ["node_modules/@types", "node_modules/web-ext-types"] + "typeRoots": ["node_modules/@types", "node_modules/web-ext-types"], + + "experimentalDecorators": true, + "emitDecoratorMetadata": true }, "include": [ "src" |