We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f43eae commit 8f31eebCopy full SHA for 8f31eeb
packages/cli/src/db-studio/api/tsconfig.json
@@ -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