oncall-engine/grafana-plugin/tsconfig.json
Maxim Mordasov 828b0a3f4e
Migrate from grafana-toolkit to grafana plugin tools (#3837)
# What this PR does

Migrate from grafana-toolkit to grafana plugin tools

## Which issue(s) this PR fixes

https://github.com/grafana/oncall/issues/3651

## Checklist

- [x] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)

---------

Co-authored-by: Michael Derynck <michael.derynck@grafana.com>
Co-authored-by: Dominik <dominik.broj@grafana.com>
2024-02-21 07:49:10 -07:00

16 lines
435 B
JSON

{
"extends": "./.config/tsconfig.json",
"include": ["src", "e2e-tests", "playwright.config.ts"],
"types": ["node", "@emotion/core"],
"compilerOptions": {
"rootDir": "",
"typeRoots": ["./node_modules/@types"],
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false,
"resolveJsonModule": true,
"noImplicitAny": false,
"skipLibCheck": true,
"useDefineForClassFields": true
}
}