This commit is contained in:
crusader 2018-05-23 16:41:07 +09:00
parent d34302f585
commit 8d26f6fcda
2 changed files with 2 additions and 7 deletions

View File

@ -17,7 +17,7 @@
"author": "Loafle <loafer@loafle.com>",
"scripts": {
"generate:package": "node .make-package.js",
"generate:doc": "rimraf docs && typedoc --out docs --target es6 --theme minimal --mode file src",
"generate:doc": "rimraf docs && typedoc --out docs --target es5 --theme minimal --mode file src",
"bundle": "rimraf dist && tsc",
"build": "npm run bundle && npm run generate:package && npm run generate:doc"
},

View File

@ -1,7 +1,2 @@
export abstract class Annotation<Attribute = {}> {
public readonly attribute: Attribute;
public constructor(attribute?: Attribute) {
this.attribute = attribute;
}
export abstract class Annotation {
}