forked from JCMais/node-libcurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
30 lines (30 loc) · 829 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/external/*"] },
"incremental": true,
"module": "commonjs",
// Node.js >= 8 supports 100% of ES2017 (https://node.green/)
"target": "es2017",
"lib": [
"es2017",
// error Cannot find name 'AsyncIterable'.
"esnext.asynciterable"
],
"esModuleInterop": true,
"declaration": true,
"declarationMap": true,
"rootDir": "lib",
"outDir": "dist",
"sourceMap": true,
"strict": true,
"allowSyntheticDefaultImports": true,
// "typeRoots": ["node_modules/@types", "types/external"],
"noUnusedLocals": true,
"importHelpers": true
},
"include": ["lib/**/*"],
"exclude": ["node_modules", "test/**/*.js"],
// @TODO Remove those when done
// "files": ["types/custom/index.d.ts"]
}