forked from jaegertracing/jaeger-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
32 lines (32 loc) · 883 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
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2016",
"lib": ["es2017", "dom", "dom.iterable", "webworker"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
},
"include": [
// TODO(tiffon): Make plexus a project reference #348 is mergeds
"packages/plexus/demo",
"packages/plexus/src",
// easier to add `./typings` here than deal with typeRoots, paths, etc.
"typings"
],
"exclude": ["./packages/plexus/src/LayoutManager/layout.worker.bundled.js"],
"references": [
{
"path": "packages/jaeger-ui/tsconfig.lint.json"
}
]
}