mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
12 lines
196 B
TypeScript
12 lines
196 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @target: es5
|
||
|
// @outDir: ./out
|
||
|
// @declaration: true
|
||
|
// @filename: index.js
|
||
|
class Foo {
|
||
|
static stat = 10;
|
||
|
member = 10;
|
||
|
}
|
||
|
|
||
|
module.exports = new Foo();
|