mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
54dfee02b2
* move codemirror-promql as a prometheus web module Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * remove unecessary file for the codemirror module Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * change license for Apache Signed-off-by: Augustin Husson <husson.augustin@gmail.com> * fix codemirror build Signed-off-by: Augustin Husson <husson.augustin@gmail.com>
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"
|
|
]
|
|
}
|