-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
45 lines (45 loc) · 1.81 KB
/
tsconfig.base.json
File metadata and controls
45 lines (45 loc) · 1.81 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@factly/scooter-bubble-menu": ["libs/scooter-bubble-menu/src/index.js"],
"@factly/scooter-claim": ["libs/scooter-claim/src/index.js"],
"@factly/scooter-claims": ["libs/scooter-claims/src/index.js"],
"@factly/scooter-code-block": ["libs/scooter-code-block/src/index.js"],
"@factly/scooter-core": ["libs/scooter-core/src/index.js"],
"@factly/scooter-embed": ["libs/scooter-embed/src/index.js"],
"@factly/scooter-fixed-menu": ["libs/scooter-fixed-menu/src/index.js"],
"@factly/scooter-image": ["libs/scooter-image/src/index.js"],
"@factly/scooter-shared-utils": [
"libs/scooter-shared-utils/src/index.js"
],
"@factly/scooter-slash-commands": [
"libs/scooter-slash-commands/src/index.js"
],
"@factly/scooter-table": ["libs/scooter-table/src/index.js"],
"@factly/scooter-table-cell": ["libs/scooter-table-cell/src/index.js"],
"@factly/scooter-table-head-cell": [
"libs/scooter-table-head-cell/src/index.js"
],
"@factly/scooter-table-row": ["libs/scooter-table-row/src/index.js"],
"@factly/scooter-tagore": ["libs/scooter-tagore/src/index.js"],
"@factly/scooter-taskitem": ["libs/scooter-taskitem/src/index.js"],
"@factly/scooter-tasklist": ["libs/scooter-tasklist/src/index.js"],
"@factly/scooter-ui": ["libs/scooter-ui/src/index.js"]
}
},
"exclude": ["node_modules", "tmp"]
}