forked from JCMais/node-libcurl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
39 lines (39 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/external/*"] },
"incremental": true,
"module": "commonjs",
// Node.js >= 19 supports almost 100% of ES2018 (https://node.green/#ES2018)
"target": "es2018",
"lib": [
"es2018",
// 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"],
// @TODO Remove those when done
// "files": ["types/custom/index.d.ts"]
"typedocOptions": {
// "mode": "modules",
"mode": "library",
"out": "docs",
"excludeNotExported": true,
"excludePrivate": true,
"readme": "none",
"gaID": "UA-11343647-11"
}
}