1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
### A base TSConfig for working with Node 16.
Add the package to your `"devDependencies"`:
```sh
npm install --save-dev @tsconfig/node16
yarn add --dev @tsconfig/node16
```
Add to your `tsconfig.json`:
```json
"extends": "@tsconfig/node16/tsconfig.json"
```
---
The `tsconfig.json`:
```jsonc
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"_version": "16.1.0",
"compilerOptions": {
"lib": ["es2021"],
"module": "node16",
"target": "es2021",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node16"
}
}
```
You can find the [code here](https://github.com/tsconfig/bases/blob/master/bases/node16.json).
|