Commit 21b53b7d by Ryan McKinley Committed by GitHub

Toolkit: don't create declaration files for plugins (by default) (#22228)

parent 69c512d5
......@@ -66,6 +66,7 @@ export const lintPlugin = useSpinner<Fixable>('Linting', async ({ fix }) => {
try {
// Show a warning if the tslint file exists
await fs.access(resolvePath(process.cwd(), 'tslint.json'));
console.log('\n');
console.log('--------------------------------------------------------------');
console.log('NOTE: @grafana/toolkit has migrated to use eslint');
console.log('Update your configs to use .eslintrc rather than tslint.json');
......
{
"compilerOptions": {
"alwaysStrict": true
"alwaysStrict": true,
"declaration": false
},
"extends": "@grafana/tsconfig"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment