-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (32 loc) · 1.35 KB
/
tsconfig.base.json
File metadata and controls
41 lines (32 loc) · 1.35 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
{
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"esModuleInterop": true,
"importHelpers": false,
"moduleResolution": "node",
"module": "ES2020",
"resolveJsonModule": true,
"strict": true,
"target": "ES2018",
"sourceMap": true,
"jsx": "react",
"skipLibCheck": true,
"types": [],
"lib": ["ES2020", "DOM", "WebWorker"],
"paths": {
"@datadog/browser-core": ["./packages/core/src"],
"@datadog/browser-flagging": ["./packages/flagging/src/entries/main"],
"@datadog/browser-logs": ["./packages/logs/src/entries/main"],
"@datadog/browser-rum-core": ["./packages/rum-core/src"],
"@datadog/browser-rum": ["./packages/rum/src/entries/main"],
"@datadog/browser-rum/internal": ["./packages/rum/src/entries/internal"],
"@datadog/browser-rum/internal-synthetics": ["./packages/rum/src/entries/internalSynthetics"],
"@datadog/browser-rum-slim": ["./packages/rum-slim/src/entries/main"],
"@datadog/browser-rum-react": ["./packages/rum-react/src/entries/main"],
"@datadog/browser-rum-react/react-router-v6": ["./packages/rum-react/src/entries/reactRouterV6"],
"@datadog/browser-rum-react/react-router-v7": ["./packages/rum-react/src/entries/reactRouterV7"],
"@datadog/browser-worker": ["./packages/worker/src/entries/main"]
}
}
}