-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.07 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
{
"compilerOptions": {
"target": "es5",
"sourceMap": false,
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"jsx": "react",
"incremental": true,
"composite": true,
"outDir": "./ts_out",
//"noEmit": true,
"strict": true,
"paths": {
"@framework/*": [ "../Framework/Signum.React/Scripts/*" ],
"@extensions/*": [ "../Extensions/Signum.React.Extensions/*" ],
"*": [
"../Framework/Signum.React/node_modules/@types/*",
"../Framework/Signum.React/node_modules/*",
"./*"
]
},
"lib": [
"es2017",
//"esnext",
"dom"
]
},
"exclude": [
"./node_modules",
"./ts_out",
"../Framework/Signum.React/node_modules",
"../Framework/Signum.React/ts_out",
"../Extensions/Signum.React.Extensions/node_modules",
"../Extensions/Signum.React.Extensions/ts_out"
],
"references": [
{ "path": "../Framework/Signum.React" },
{ "path": "../Extensions/Signum.React.Extensions" }
]
}