-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathtsconfig.json
34 lines (34 loc) · 938 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
31
32
33
34
{
"compilerOptions": {
"target": "es5",
"moduleResolution": "node",
"lib": ["es6", "dom"],
"outDir": "build",
"rootDir": "src",
"strict": false,
"esModuleInterop": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"stripInternal": true,
"strictNullChecks": true
},
"exclude": ["node_modules", "tmp", "**/*.test.ts", "build", "src/tests"],
"typedocOptions": {
"mode": "file",
"module": "commonjs",
"excludeExternals": true,
"excludePrivate": true,
"excludeNotExported": true,
"name": "Unstoppabledomains resolution library",
"inputFiles": [
"./src/Resolution.ts",
"./src/index.ts",
"./src/types/publicTypes.ts",
"./src/errors/configurationError.ts",
"./src/errors/resolutionError.ts",
"./src/errors/dnsRecordsError.ts"
]
}
}