-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathtsconfig.json
48 lines (48 loc) · 987 Bytes
/
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
{
"compilerOptions": {
"module": "esnext",
"target": "es5",
"moduleResolution": "node",
"declaration": false,
"strict": false,
"baseUrl": "./",
"paths": {
"@pnp/adaljsclient": [
"app/@pnp/adaljsclient"
],
"@pnp/common": [
"app/@pnp/common"
],
"@pnp/config-store": [
"app/@pnp/config-store"
],
"@pnp/graph": [
"app/@pnp/graph"
],
"@pnp/logging": [
"app/@pnp/logging"
],
"@pnp/odata": [
"app/@pnp/odata"
],
"@pnp/pnpjs": [
"app/@pnp/pnpjs"
],
"@pnp/sp": [
"app/@pnp/sp"
],
"@pnp/sp-addinhelpers": [
"app/@pnp/sp-addinhelpers"
],
"@pnp/sp-clientsvc": [
"app/@pnp/sp-clientsvc"
],
"@pnp/sp-taxonomy": [
"app/@pnp/sp-taxonomy"
],
"@microsoft/microsoft-graph-types": [
"app/@microsoft/microsoft-graph-types"
],
}
}
}