Skip to content

Commit 8f31eeb

Browse files
feat(database-ui): add tsconfig to resolve elide:sqlite types
1 parent 2f43eae commit 8f31eeb

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "ESNext",
5+
"lib": ["ES2022"],
6+
"moduleResolution": "bundler",
7+
"allowImportingTsExtensions": true,
8+
"verbatimModuleSyntax": true,
9+
"moduleDetection": "force",
10+
"noEmit": true,
11+
"skipLibCheck": true,
12+
13+
"strict": true,
14+
"noUnusedLocals": true,
15+
"noUnusedParameters": true,
16+
"noFallthroughCasesInSwitch": true,
17+
18+
"types": ["@elide-dev/types"]
19+
},
20+
"include": ["**/*.ts"],
21+
"exclude": ["node_modules"]
22+
}

0 commit comments

Comments
 (0)