├── .gitignore ├── README.md ├── decorator-tests.js ├── decorator-tests.ts ├── package.json ├── run.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/README.md -------------------------------------------------------------------------------- /decorator-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/decorator-tests.js -------------------------------------------------------------------------------- /decorator-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/decorator-tests.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/package.json -------------------------------------------------------------------------------- /run.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/run.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evanw/decorator-tests/HEAD/tsconfig.json --------------------------------------------------------------------------------