-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 791 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"target": "es2019", // Node.js v12 config based on community repo https://github.com/tsconfig/bases#node-12-tsconfigjson
"lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"], // Official target mapping https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping
"module": "commonjs",
"outDir": "lib",
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": false,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "remove",
"removeComments": true,
"noEmitOnError": true,
"newLine": "lf",
"strict": true
},
"include": ["src"],
"exclude": ["src/**/*.test.*"]
}