c9f563e576
* feat(grafana-ui): introduce development exports to prevent importing from grafana/ui/src * refactor(theme-generation): move theme templates into scripts so themes continue to build * refactor(frontend): replace grafana/ui paths that use nested src with /internal or /unstable * chore(betterer): update better results file * feat(grafana-ui): support enterprise, remove Text component from internal * docs(packages): update readme with exporting code conventions
23 lines
512 B
JSON
23 lines
512 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"alwaysStrict": true,
|
|
"declaration": false,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true
|
|
},
|
|
"transpileOnly": true
|
|
},
|
|
"extends": "@grafana/tsconfig",
|
|
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"],
|
|
"include": ["./types", "."]
|
|
}
|