Skip to content

Commit f58beb6

Browse files
committed
update configs
1 parent 890dc37 commit f58beb6

File tree

4 files changed

+578
-17
lines changed

4 files changed

+578
-17
lines changed

eslint.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ export default [
1919
languageOptions: {
2020
parser: tseslint.parser,
2121
parserOptions: {
22-
project: [
23-
"./tsconfig.json",
24-
"./example/tsconfig.json",
25-
"./example/convex/tsconfig.json",
26-
],
22+
project: ["./tsconfig.json", "./example/convex/tsconfig.json"],
2723
tsconfigRootDir: import.meta.dirname,
2824
},
2925
},

example/convex/tsconfig.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
{
22
"compilerOptions": {
3-
"allowJs": true,
4-
"strict": true,
5-
"skipLibCheck": true,
63
"target": "ESNext",
7-
"lib": ["ES2021", "dom", "DOM.Iterable", "ESNext.Array"],
8-
"forceConsistentCasingInFileNames": true,
4+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
5+
"skipLibCheck": false,
96
"allowSyntheticDefaultImports": true,
10-
"verbatimModuleSyntax": true,
7+
"strict": true,
8+
"forceConsistentCasingInFileNames": true,
119
"module": "ESNext",
1210
"moduleResolution": "Bundler",
1311
"isolatedModules": true,
14-
"noEmit": true,
15-
"jsx": "react-jsx"
12+
"jsx": "react-jsx",
13+
"noEmit": true
1614
},
17-
"include": [".*"],
18-
"exclude": ["./_generated"]
15+
"include": ["."],
16+
"exclude": ["_generated"]
1917
}

0 commit comments

Comments
 (0)