mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
22 lines
472 B
JSON
22 lines
472 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"compilerOptions": {
|
|
"rootDirs": [".", "stories"],
|
|
"module": "esnext",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"typeRoots": ["./node_modules/@types", "types"],
|
|
"skipLibCheck": true // Temp workaround for Duplicate identifier tsc errors
|
|
},
|
|
}
|