├── .editorconfig ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── Container.tsx │ ├── Header.tsx │ ├── LayoutMain.tsx │ ├── LayoutRoot.tsx │ └── Page.tsx ├── content │ ├── .gitkeep │ └── a-markdown-page.md ├── layouts │ └── index.tsx ├── pages │ ├── 404.tsx │ ├── index.tsx │ └── page-2.tsx ├── styles │ ├── mixins.ts │ ├── normalize.ts │ └── variables.ts ├── templates │ └── page.tsx └── typings.d.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/LayoutMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/components/LayoutMain.tsx -------------------------------------------------------------------------------- /src/components/LayoutRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/components/LayoutRoot.tsx -------------------------------------------------------------------------------- /src/components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/components/Page.tsx -------------------------------------------------------------------------------- /src/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/content/a-markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/content/a-markdown-page.md -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/page-2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/pages/page-2.tsx -------------------------------------------------------------------------------- /src/styles/mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/styles/mixins.ts -------------------------------------------------------------------------------- /src/styles/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/styles/normalize.ts -------------------------------------------------------------------------------- /src/styles/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/styles/variables.ts -------------------------------------------------------------------------------- /src/templates/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/templates/page.tsx -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resir014/gatsby-starter-typescript-plus/HEAD/yarn.lock --------------------------------------------------------------------------------