mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
20 lines
419 B
JSON
20 lines
419 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"alwaysStrict": true,
|
||
|
"declaration": false,
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"ts-node": {
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"target": "es5",
|
||
|
"esModuleInterop": true
|
||
|
},
|
||
|
"transpileOnly": true
|
||
|
},
|
||
|
"extends": "@grafana/tsconfig",
|
||
|
|
||
|
"exclude": ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"],
|
||
|
"include": ["./types", "."]
|
||
|
}
|