-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.lib.json
More file actions
44 lines (44 loc) · 1.19 KB
/
tsconfig.lib.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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
40
41
42
43
44
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.lib.tsbuildinfo",
"module": "nodenext",
"target": "es2015",
"lib": ["es2015", "dom"],
"moduleResolution": "nodenext",
"allowImportingTsExtensions": true,
"noEmit": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"strictNullChecks": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "lib",
"sourceMap": false,
"esModuleInterop": true,
"emitDeclarationOnly": true,
"isolatedDeclarations": true,
"skipLibCheck": true,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "src/**/*test.ts"],
"typedocOptions": {
"readme": "README.md",
"plugin": ["typedoc-plugin-mdn-links"],
"entryPoints": [
"src/animation/index.ts",
"src/array/index.ts",
"src/async/index.ts",
"src/datetime/index.ts",
"src/device/index.ts",
"src/html/index.ts",
"src/other/index.ts",
"src/text/index.ts",
"src/typecheck/index.ts"
],
"out": "docs"
}
}