mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 01:23:32 -06:00
15 lines
346 B
JSON
15 lines
346 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"rootDirs": ["."],
|
|
"outDir": "dist/src",
|
|
"declaration": false,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"esModuleInterop": true,
|
|
"lib": ["es2015", "es2017.string"]
|
|
}
|
|
}
|