mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
26 lines
448 B
JSON
26 lines
448 B
JSON
|
{
|
||
|
"compileOnSave": false,
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2015",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es6",
|
||
|
"dom"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"outDir": "lib",
|
||
|
"strict": true,
|
||
|
"sourceMap": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/lang-promql"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"src/**/*.test.ts"
|
||
|
]
|
||
|
}
|