mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 04:04:00 -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", "."]
|
|
}
|