-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 826 Bytes
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 826 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"baseUrl": "./src",
"experimentalDecorators": true,
"jsx": "react",
"jsxFactory": "createElement",
"jsxFragmentFactory": "Fragment",
"lib": [
"dom",
"es6",
"es2017",
"es2018",
"es2019"
],
"moduleResolution": "node",
"outDir": "./lib",
"paths": {
"mvvm.js": [""]
},
"sourceMap": true,
"strict": true,
"target": "es6"
},
"typedocOptions": {
"disableSources": true,
"excludeExternals": true,
"excludeNotExported": true,
"excludePrivate": true,
"excludeProtected": true,
"external-modulemap": ".*\/lib\/([\\w\\-_]+)",
"hideGenerator": true,
"includeDeclarations": true,
"inputFiles": ["lib/index.d.ts", "lib/dom/index.d.ts"],
"mode": "modules",
"out": "docs"
}
}