mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
dcc02a8ebe
* feat(sass): introduce font-file-path var to define where to load fonts from * feat(storybook): introduce storybook sass theme styles to set font file paths * chore(sass): change imports so treated as sass rather than css * feat(storybook): filter assets so builds dont contain thousands of files
20 lines
494 B
JSON
20 lines
494 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"rootDirs": ["."]
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["src/**/*.ts*", "../../public/app/types/*.d.ts"],
|
|
// override for storybook which uses ts-node to compile main.ts / preview.ts files.
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"isolatedModules": false,
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|