UNPKG

409 BJSONView Raw
1{
2 "extends": "../../tsconfig.base.json",
3 "include": ["./", "../../types"],
4 "exclude": ["**/__tests__"],
5 "compilerOptions": {
6 // compile away optional-chaining-operator
7 // node support table: https://node.green/#ES2020-features-optional-chaining-operator-----
8 "target": "ES2019",
9 "outDir": "../../dist/node",
10 "module": "commonjs",
11 "lib": ["ESNext"],
12 "sourceMap": true
13 }
14}