Revision 902a230867236a2ffa34a71b2bc5531ebe0e1773 authored by Victor Marin on 14 October 2022, 08:52:08 UTC, committed by GitHub on 14 October 2022, 08:52:08 UTC
* MSSQL/MySQL: Fix variable interpolation

* Escape string vars
1 parent e819ed0
Raw File
tsconfig.json
{
  "compilerOptions": {
    "jsx": "react",
    "baseUrl": "public/",
    "outDir": "public/dist",
    "rootDirs": ["public/"],
    "allowJs": true,
    "strict": true,
    "resolveJsonModule": true,
    "useUnknownInCatchVariables": true,
    "incremental": true,
    "tsBuildInfoFile": "./tsconfig.tsbuildinfo"
  },
  "extends": "@grafana/tsconfig/base.json",
  "include": [
    "public/app/**/*.ts*",
    "public/e2e-test/**/*.ts",
    "public/test/**/*.ts",
    "public/vendor/**/*.ts",
    "packages/jaeger-ui-components/typings",
    "packages/grafana-data/typings",
    "packages/grafana-ui/src/types"
  ]
}
back to top