├── .gitignore ├── README.md ├── backup ├── index.html ├── package.json ├── src ├── components │ ├── container │ │ ├── index.tsx │ │ └── styles.css │ ├── node │ │ ├── index.tsx │ │ └── styles.css │ └── template │ │ ├── index.tsx │ │ └── styles.css ├── constants.ts ├── index.tsx ├── pages │ ├── example-page │ │ ├── index.tsx │ │ └── styles.css │ └── root │ │ ├── index.tsx │ │ ├── reset.css │ │ └── styles.css └── routes.tsx ├── tsconfig.json └── webpack ├── dev.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/README.md -------------------------------------------------------------------------------- /backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/backup -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/package.json -------------------------------------------------------------------------------- /src/components/container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/components/container/index.tsx -------------------------------------------------------------------------------- /src/components/container/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/node/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/components/node/index.tsx -------------------------------------------------------------------------------- /src/components/node/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/template/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/components/template/index.tsx -------------------------------------------------------------------------------- /src/components/template/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/example-page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/pages/example-page/index.tsx -------------------------------------------------------------------------------- /src/pages/example-page/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/pages/example-page/styles.css -------------------------------------------------------------------------------- /src/pages/root/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/pages/root/index.tsx -------------------------------------------------------------------------------- /src/pages/root/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/pages/root/reset.css -------------------------------------------------------------------------------- /src/pages/root/styles.css: -------------------------------------------------------------------------------- 1 | pre { 2 | font-size: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/webpack/dev.config.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironbay/inferno-typescript-template/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------