forked from brianc/node-sql
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 763 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 763 Bytes
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
{
"compilerOptions": {
"target": "es2022",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmitHelpers": true,
"importHelpers": true,
"pretty": true,
"sourceMap": true,
"lib": ["es2022", "esnext.asynciterable"],
"strict": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitReturns": true,
"declaration": true,
"typeRoots": ["./@types", "./node_modules/@types"],
"types": ["lodash", "node", "sliced"]
},
"exclude": ["node_modules", "./dist"],
"compileOnSave": true,
"buildOnSave": true
}