forked from ramp4-pcar4/ramp4-pcar4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
49 lines (47 loc) · 1.31 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
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"vue-slider-component": ["./scripts/vue-slider-component.d.ts"]
},
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"pretty": true,
"declaration": true,
"declarationDir": "./dist/ts"
},
"typedocOptions": {
"entryPoints": [
"./src/main.ts",
"./src/api",
"./src/fixtures",
"./src/directives",
"./src/geo",
"./src/lang"
],
"out": "ts-docs",
"customCss": "./docs/.typedoc/theme/custom.css",
"entryPointStrategy": "expand",
"readme": "./docs/typedoc-README.md",
"name": "RAMP4",
"includeVersion": true,
"githubPages": true,
"cleanOutputDir": true,
"exclude": [
"**/*/store/*.ts",
"**/*/index.ts",
"**/tests",
"**/api/internal.ts",
"**/fixtures/geosearch/definitions.ts",
"**/fixtures/grid/accessibility.ts",
"**/geo/esri.ts"
]
},
"references": [
{
"path": "./tsconfig.vite-config.json"
}
]
}