0.0.5 • Published 5 years ago

@nexst/tsconfig-client v0.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

How to use

Install it:

# with yarn
$ yarn add @nexst/tsconfig-client

# or with npm
$ npm install --save @nexst/tsconfig-client

Then use it:

{
  "extends": "@nexst/tsconfig-client",
  "compilerOptions": {
    "outDir": "build"
  }
}

In the @nexst/tsconfig-client

{
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "jsx": "preserve",
    "lib": ["dom", "es2017"],
    "moduleResolution": "node",
    "strict": true,
    "strictPropertyInitialization": false,
    "removeComments": true,
    "skipLibCheck": true,
    "sourceMap": true,
    "allowSyntheticDefaultImports": true,
  }
}