forked from
ptr.pet/untangled
csr tangled client in solid-js
651 B
26 lines
1{
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "es2023",
5 "module": "esnext",
6 "lib": ["ES2023", "DOM"],
7 "types": ["vite/client"],
8 "skipLibCheck": true,
9
10 /* Bundler mode */
11 "moduleResolution": "bundler",
12 "allowImportingTsExtensions": true,
13 "verbatimModuleSyntax": true,
14 "moduleDetection": "force",
15 "noEmit": true,
16 "jsx": "preserve",
17 "jsxImportSource": "solid-js",
18
19 /* Linting */
20 "noUnusedLocals": true,
21 "noUnusedParameters": true,
22 "erasableSyntaxOnly": true,
23 "noFallthroughCasesInSwitch": true
24 },
25 "include": ["src"]
26}