@faast/ts-config

1.3.5 • Public • Published

faast-ts-config

Common typescript config

Usage

npm i -D go-faast/faast-ts-config

Extend the files needed.

Examples

jest.config.js

const base = require('@faast/ts-config/library/jest.config.js')

module.exports = Object.assign({}, base, {
  // overrides here
})

tsconfig.json

{
  "extends": "@faast/ts-config/library/tsconfig.json",
  "compilerOptions": {
    "baseUrl": ".",
    "outDir": "dist/lib",
    "declarationDir": "dist/types",
    "paths": {
      "#/*": ["./src/*"],
    }
  },
  "exclude": ["node_modules", "dist"]
}

Templates

To initialize a new project from scratch copy the entire template directory. If migrating an existing project you'll need to copy over only desired files manually to avoid overwriting src and package.json.

For Libraries

cp -r ./template/library/. /path/to/empty/project

For Servers

cp -r ./template/server/. /path/to/empty/project

For React Frontends (using webpack)

cp -r ./template/react/. /path/to/empty/project

Dependencies (3)

Dev Dependencies (10)

Package Sidebar

Install

npm i @faast/ts-config

Weekly Downloads

121

Version

1.3.5

License

MIT

Unpacked Size

11.4 kB

Total Files

37

Last publish

Collaborators

  • dwolfgram
  • dzdidi
  • dylanseago
  • moeadham
  • hudgins