@something.technology/ts-config

Shared TypeScript config all our typescript based projects

Usage no npm install needed!

<script type="module">
  import somethingTechnologyTsConfig from 'https://cdn.skypack.dev/@something.technology/ts-config';
</script>

README

Shared Typescript Configs

TypeScript Microservices

Example how to use this package in your typescript services:

{
  "extends": "@something.technology/ts-config",
  "compilerOptions": {
    "types": ["jest"]
  }
}

React Apps

Example how to use this package in your React apps:

{
  "extends": "@something.technology/ts-config/react-native",
  "compilerOptions": {
    "types": ["jest"]
  }
}

React Native Apps

Example how to use this package in your React Native apps:

{
  "extends": "@something.technology/ts-config/react-native",
  "compilerOptions": {
    "types": ["jest"]
  }
}