diff --git a/package.json b/package.json index 7637aee..e53dcdf 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ }, "scripts": { "docs": "cp ./README.md ./dist/README.md", - "build": "rimraf ./dist/lib && tsc", + "build": "rimraf ./dist/lib && tsc --project tsconfig.build.json", "up": "yarn docs && yarn build && yarn publish dist" } } diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 0000000..1ab50dd --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.json", + "exclude": [ + "node_modules", + "dist", + "src/test", + ], + "compilerOptions": { + "experimentalDecorators": false, + "emitDecoratorMetadata": false, + } +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 3c5fbc6..bd8a42f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,6 +7,8 @@ "rootDir": "./src", "declaration": true, "declarationMap": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true }, "exclude": [ "node_modules",