forked from grafana/pyroscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
67 lines (64 loc) · 2.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"baseUrl": ".",
"compilerOptions": {
"plugins": [{ "name": "typescript-plugin-css-modules" }],
// TODO: unify with webpack.common.js
"paths": {
"@phlare/*": ["./public/app/*"],
"@pyroscope/webapp/*": ["./node_modules/pyroscope-oss/webapp/*"],
"@webapp/redux/*": [
"./node_modules/pyroscope-oss/webapp/javascript/redux/*"
],
"@pyroscope/flamegraph/*": [
"./node_modules/pyroscope-oss/packages/pyroscope-flamegraph/*"
],
"@pyroscope/models/*": [
"./node_modules/pyroscope-oss/packages/pyroscope-models/*"
],
"@webapp/components/ExportData": [
"./public/app/overrides/components/ExportData"
],
"@webapp/components/TimelineChart/ContextMenu.plugin": [
"./public/app/overrides/components/TimelineChart/ContextMenu.plugin"
],
"@webapp/components/AppSelector/Label": [
"./public/app/overrides/components/AppSelector/Label"
],
"@webapp/ui/Sidebar": ["./public/app/overrides/ui/Sidebar"],
"@webapp/util/baseurl": ["./public/app/overrides/util/baseurl"],
"@webapp/redux/store": ["./public/app/redux/store"],
"@webapp/redux/hooks": ["./public/app/redux/hooks"],
"@webapp/redux/reducers/tenant": ["./public/app/redux/reducers/tenant"],
"@webapp/services/apps": ["./public/app/overrides/services/appNames"],
"@webapp/services/render": ["./public/app/overrides/services/render"],
"@webapp/services/tags": ["./public/app/overrides/services/tags"],
"@webapp/services/base": ["./public/app/overrides/services/base"],
"@webapp/*": ["./node_modules/pyroscope-oss/webapp/javascript/*"],
// Without this files under pyroscope-oss would resolve to ./node_modules/pyroscope-oss/@mui/base
"@mui/base/*": ["./node_modules/@mui/base/*"]
},
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": true,
"strictNullChecks": true
},
"include": [
"./node_modules/pyroscope-oss/lib/",
"./node_modules/pyroscope-oss/webapp/javascript/types",
"public",
"public/app/types.ts"
]
}