├── .gitignore ├── .yarn └── releases │ └── yarn-3.2.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── package.json ├── src └── cli.ts ├── templates └── default │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc │ ├── .yarn │ ├── plugins │ │ └── @yarnpkg │ │ │ └── plugin-typescript.cjs │ └── releases │ │ └── yarn-3.1.0.cjs │ ├── .yarnrc.yml │ ├── package.json │ ├── readme.md │ ├── src │ └── index.ts │ └── tsconfig.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/.yarn/releases/yarn-3.2.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/src/cli.ts -------------------------------------------------------------------------------- /templates/default/.eslintignore: -------------------------------------------------------------------------------- 1 | .eslintrc.cjs 2 | -------------------------------------------------------------------------------- /templates/default/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.eslintrc.js -------------------------------------------------------------------------------- /templates/default/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.gitignore -------------------------------------------------------------------------------- /templates/default/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.prettierrc -------------------------------------------------------------------------------- /templates/default/.yarn/plugins/@yarnpkg/plugin-typescript.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.yarn/plugins/@yarnpkg/plugin-typescript.cjs -------------------------------------------------------------------------------- /templates/default/.yarn/releases/yarn-3.1.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.yarn/releases/yarn-3.1.0.cjs -------------------------------------------------------------------------------- /templates/default/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/.yarnrc.yml -------------------------------------------------------------------------------- /templates/default/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/package.json -------------------------------------------------------------------------------- /templates/default/readme.md: -------------------------------------------------------------------------------- 1 | # {{name}} 2 | 3 | {{description}} 4 | -------------------------------------------------------------------------------- /templates/default/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/src/index.ts -------------------------------------------------------------------------------- /templates/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/templates/default/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/tsnt/HEAD/yarn.lock --------------------------------------------------------------------------------