-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·60 lines (60 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.37 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"module": "esnext",
"outDir": "./dist/out-tsc",
"baseUrl": "./",
"paths": {
"jquery": [
"./node_modules/jquery/dist/jquery.js"
],
"locache": [
"./node_modules/locache/build/locache.js"
],
"meld": [
"./node_modules/meld/meld.js"
],
"when": [
"./node_modules/when/when.js"
],
"backbone": [
"./node_modules/backbone/backbone.js"
],
"backbone-paginator": [
"./node_modules/backbone.paginator/lib/backbone.paginator.js"
],
"underscore": [
"./node_modules/underscore/underscore.js"
],
"constraintjs": [
"./node_modules/constraintjs/build/cjs.js"
],
"data-flow": [
"./node_modules/model-js/dist/model.js"
],
"state-machine": [
"./node_modules/@polpware/fe-dependencies/dummy.js"
],
"@polpware/fe-data": [
"dist/polpware/fe-data"
],
"@polpware/fe-data/*": [
"dist/polpware/fe-data/*"
]
},
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
}