mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
20 lines
557 B
JSON
20 lines
557 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"rootDirs": [".", "stories"],
|
|
"module": "esnext",
|
|
"outDir": "compiled",
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"typeRoots": ["./node_modules/@types", "types"],
|
|
"skipLibCheck": true, // Temp workaround for Duplicate identifier tsc errors,
|
|
"removeComments": false
|
|
}
|
|
}
|