websocket-canvas/node_modules/@tsconfig/recommended
Robin Steinberg 02f21f1ccd Initial commit 2021-08-24 19:21:14 +02:00
..
LICENSE Initial commit 2021-08-24 19:21:14 +02:00
README.md Initial commit 2021-08-24 19:21:14 +02:00
package.json Initial commit 2021-08-24 19:21:14 +02:00
tsconfig.json Initial commit 2021-08-24 19:21:14 +02:00

README.md

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/recommended
yarn add --dev @tsconfig/recommended

Add to your tsconfig.json:

"extends": "@tsconfig/recommended/tsconfig.json"

The tsconfig.json:

{
  "compilerOptions": {
    "target": "ES2015",
    "module": "commonjs",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true
  },
  "$schema": "https://json.schemastore.org/tsconfig",
  "display": "Recommended"
}