mirror of
https://github.com/grafana/grafana.git
synced 2026-07-03 03:37:53 +00:00
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"extends": "./scripts/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"outDir": "public/dist",
|
|
"rootDir": ".",
|
|
"rootDirs": ["public/"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noUncheckedSideEffectImports": false,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "bundler",
|
|
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
|
|
"types": ["systemjs", "webpack-env", "gtag.js", "trusted-types"],
|
|
"paths": {
|
|
"@grafana/schema/dist/esm/*": ["./packages/grafana-schema/src/*"],
|
|
"*": ["./public/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"swc": true,
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler"
|
|
}
|
|
},
|
|
"include": [
|
|
"eslint.config.js",
|
|
"public/app/**/*.ts*",
|
|
"public/swagger/**/*.ts*",
|
|
"public/e2e-test/**/*.ts",
|
|
"public/test/**/*.ts*",
|
|
"public/vendor/**/*.ts",
|
|
"packages/grafana-data/typings",
|
|
"packages/grafana-ui/src/types",
|
|
"public/boot/**/*.ts*"
|
|
],
|
|
"exclude": ["public/app/**/webpack.config.ts", "public/app/**/__smoke__/**", "public/app/**/*.smoke.ts"]
|
|
}
|