mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
tsconfig: format file
This commit is contained in:
parent
c960af098a
commit
ceadced6f0
@ -3,10 +3,7 @@
|
|||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"outDir": "public/dist",
|
"outDir": "public/dist",
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"lib": [
|
"lib": ["es6", "dom"],
|
||||||
"es6",
|
|
||||||
"dom"
|
|
||||||
],
|
|
||||||
"rootDir": "public/",
|
"rootDir": "public/",
|
||||||
"jsx": "react",
|
"jsx": "react",
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
@ -14,9 +11,9 @@
|
|||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"importHelpers": true, // importing helper functions from tslib
|
"importHelpers": true,
|
||||||
"noEmitHelpers": true, // disable emitting inline helper functions
|
"noEmitHelpers": true,
|
||||||
"removeComments": false, // comments are needed by angular injections
|
"removeComments": false,
|
||||||
"inlineSourceMap": false,
|
"inlineSourceMap": false,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"noEmitOnError": false,
|
"noEmitOnError": false,
|
||||||
@ -30,14 +27,8 @@
|
|||||||
"baseUrl": "public",
|
"baseUrl": "public",
|
||||||
"pretty": true,
|
"pretty": true,
|
||||||
"paths": {
|
"paths": {
|
||||||
"app": [
|
"app": ["app"]
|
||||||
"app"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
|
||||||
"public/app/**/*.ts",
|
}
|
||||||
"public/app/**/*.tsx",
|
|
||||||
"public/test/**/*.ts"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user