-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
52 lines (52 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"compilerOptions": {
/* Specify ECMAScript target version */
"target": "ES2018",
/* Specify module code generation */
"module": "esnext",
/* Specify library files to be included in the compilation. */
"lib": [
"ESNext",
"DOM",
"ES2018"
],
/* Specify JSX code generation */
"jsx": "react",
/* Generate corresponding .map files */
"sourceMap": true,
/* Enable all strict type-checking options */
"strict": true,
/* Specify module resolution strategy */
"moduleResolution": "node",
// /* Base directory to resolve non-absolute module names */
// "baseUrl": "./",
// /* Maps imports to locations - e.g. ~models will go to ./src/models */
// "paths": {
// "~/*": [
// "./*"
// ]
// },
/* List of folders to include type definitions from */
"typeRoots": [
"node_modules/@types",
"types"
],
/* allow import React instead of import * as React */
"allowSyntheticDefaultImports": true,
/* Emit interop between CommonJS and ES modules */
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noImplicitAny": true
},
"typedocOptions": {
"entryPoints": ["./src"],
"exclude": "./src/assets",
"out": "docs",
},
"include": [
"src",
"types/**/*",
"wordpress"
]
}