Skip to content

Instantly share code, notes, and snippets.

View michaelfortunato's full-sized avatar
:shipit:
Thinking about groups

Michael Fortunato michaelfortunato

:shipit:
Thinking about groups
View GitHub Profile
@michaelfortunato
michaelfortunato / tsconfig.json
Last active November 12, 2021 04:49
Typescript configuration
{
"extends": "@tsconfig/recommended/tsconfig.json",
"include": ["./src"],
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Projects */
// "incremental": true, /* Enable incremental compilation */
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
// "tsBuildInfoFile": "./", /* Specify the folder for .tsbuildinfo incremental compilation files. */
@michaelfortunato
michaelfortunato / eslintrc.yaml
Created November 12, 2021 04:42
Eslint Configuration (with prettier + typescript support)
env:
commonjs: true
es2021: true
node: true
extends:
- airbnb-base
- "prettier"
parser: "@typescript-eslint/parser"
parserOptions:
ecmaVersion: 5
@michaelfortunato
michaelfortunato / .prettierignore
Last active April 6, 2022 04:08
Configuration for prettier
node_modules
**/.next/**
**/_next/**
**/dist/**
packages/next/bundles/webpack/packages/*.runtime.js
packages/next/compiled/**
packages/react-refresh-utils/**/*.js
packages/react-refresh-utils/**/*.d.ts
packages/react-dev-overlay/lib/**
**/__tmp__/**