-
Notifications
You must be signed in to change notification settings - Fork 740
/
tsconfig.json.typedoc
30 lines (30 loc) · 1 KB
/
tsconfig.json.typedoc
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
{
"compilerOptions": {
"target": "ESNEXT",
"module": "ESNEXT",
"declaration": true /* Generates corresponding '.d.ts' file. */,
"declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
"strict": true /* Enable all strict type-checking options. */,
"esModuleInterop": true,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"typedocOptions": {
"name": "Swiper",
"entryPoints": [
"node_modules/swiper/",
"node_modules/swiper/types/"
],
"excludeExternals": false,
"includeVersion": true,
"out": "./public/types"
},
"include": ["node_modules/swiper/*.d.ts", "node_modules/swiper/**/*.d.ts"]
}