Skip to content

Commit 31f64a4

Browse files
committed
chore: add tsslint.config.ts to tsconfig
1 parent ba16848 commit 31f64a4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"compilerOptions": {
44
"noEmit": true,
55
},
6-
"include": [ "packages/*/tests" ],
6+
"include": [
7+
"packages/*/tests",
8+
"tsslint.config.ts"
9+
],
710
"references": [
811
{ "path": "./packages/component-meta/tsconfig.json" },
912
{ "path": "./packages/language-server/tsconfig.json" },

tsslint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from '@tsslint/config';
22
import { convertRules } from '@tsslint/eslint';
33
import * as path from 'node:path';
4-
import type ts from 'typescript';
4+
import type * as ts from 'typescript';
55

66
export default defineConfig({
77
rules: {

0 commit comments

Comments
 (0)