72a56ad503
* Chore: Remove @grafana/tsconfig * update codeowners * revert changes to grafana-plugin-configs
21 lines
453 B
JSON
21 lines
453 B
JSON
{
|
|
"extends": "../../scripts/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"jsx": "react-jsx",
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"rootDirs": ["."],
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node"
|
|
}
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"include": ["src/**/*.ts*"]
|
|
}
|