├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── README.md ├── package.json ├── public ├── global.css └── index.html ├── rollup.config.js ├── src ├── App.svelte ├── Counter.svelte ├── main.ts └── svelte.d.ts └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/package.json -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Counter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/src/Counter.svelte -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/src/svelte.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyoner/svelte-ts-template/HEAD/tsconfig.json --------------------------------------------------------------------------------