-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
40 lines (40 loc) · 1.17 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"importHelpers": true,
"module": "es2020",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"typeRoots": ["node_modules/@types"],
"types": ["node", "jasmine"],
"lib": ["es2017", "dom"],
"paths": {
"@swimlane/docspa-core": [
"./projects/swimlane/docspa-core/src/public_api"
],
"@swimlane/docspa-core/*": ["./projects/swimlane/docspa-core/src/*"],
"@swimlane/docspa-remark-preset": [
"./projects/swimlane/docspa-remark-preset/src/index"
],
"@swimlane/docspa-stackblitz": [
"./projects/swimlane/docspa-stackblitz/src/public-api"
],
"@swimlane/docspa-search": [
"./projects/swimlane/docspa-search/src/public-api"
],
"@swimlane/docspa-search/index.scss": [
"./projects/swimlane/docspa-search/src/index.scss"
]
}
}
}