mirror of https://github.com/grafana/grafana.git
20 lines
413 B
JSON
20 lines
413 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"declarationDir": "./compiled",
|
|
"emitDeclarationOnly": true,
|
|
"isolatedModules": true,
|
|
"rootDirs": ["."],
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node"
|
|
}
|
|
},
|
|
"exclude": ["dist/**/*"],
|
|
"extends": "@grafana/tsconfig",
|
|
"include": ["src/**/*.ts*"]
|
|
}
|