-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 1.37 KB
/
Copy pathtsconfig.json
File metadata and controls
43 lines (43 loc) · 1.37 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
42
43
{
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"compilerOptions": {
// If this is bumped up, make sure to update libs across all `tsconfig.json`s.
// Also make sure to test across all parts (honeycomb, nodejs, notebook renderer)
"module": "ES2022",
"target": "ES2022",
"lib": [
"ES2022"
],
// We are packaging everything with ESBuild meaning we
// never need TSC to actually emit JS
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"sourceMap": true,
"allowJs": true,
// for use with bundlers. Like node16 and nodenext,
// this mode supports package.json "imports" and "exports",
// but unlike the Node.js resolution modes, bundler never
// requires file extensions on relative paths in imports.
"moduleResolution": "bundler",
// The strict flag enables a wide range of type checking behavior
// that results in stronger guarantees of program correctness
"strict": true,
"paths": {
"@gov.nasa.jpl.hermes/*": [
"./src/modules/*"
]
},
"incremental": true
},
"exclude": [
"**/node_modules/*",
"**/out/*",
"python/*",
"grafana-datasource-plugin"
]
}