UNPKG
@artus/tsconfig
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.2
0.0.1
TSConfigs for Artus projects to extend.
github.com/artusjs/tsconfig
artusjs/tsconfig
@artus/tsconfig
/
test
/
artus_project
/
src
/
index.ts
11 lines
(8 loc)
•
147 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function FooDecorator() {
return
function (target: any) { console.log(
'decorator to class: '
, target); } }
@FooDecorator
()
class
Foo
{ }