mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 19:30:36 -06:00
16 lines
424 B
JSON
16 lines
424 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"include": ["src/**/*.ts", "../../public/app/types/jquery/*.ts"],
|
|
"exclude": ["dist", "node_modules"],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"rootDirs": ["."],
|
|
"outDir": "dist/src",
|
|
"declaration": true,
|
|
"declarationDir": "dist/src",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"esModuleInterop": true,
|
|
"lib": ["es2015", "es2017.string", "dom"]
|
|
}
|
|
}
|