Skip to content

Instantly share code, notes, and snippets.

View cetinozgur's full-sized avatar

ismyothername cetinozgur

View GitHub Profile
@cetinozgur
cetinozgur / .tsconfig
Created August 25, 2022 12:10
Project setup for react-native & typescript with expo.
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": ["es2017"],
"moduleResolution": "node",
"noEmit": true,
@cetinozgur
cetinozgur / .eslintrc
Last active August 25, 2022 10:06
Project setup for typescript-react
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
@cetinozgur
cetinozgur / .eslintrc
Last active August 25, 2022 09:43
Project setup for typescript-express, eslint & tsconfig configurations.
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"plugins": ["@typescript-eslint"],
"env": {
"browser": true,
"es6": true,