-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (41 loc) · 1.24 KB
/
tsconfig.json
File metadata and controls
43 lines (41 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"skipLibCheck": true,
"module": "esnext",
"target": "ES2021",
"declaration": false,
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noErrorTruncation": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": false,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"baseUrl": ".",
"paths": {
"@react/*": ["./src/open_inwoner/react/*"],
"react": ["./node_modules/preact/compat"],
"react-dom": ["./node_modules/preact/compat"],
"react/jsx-runtime": ["./node_modules/preact/jsx-runtime"]
},
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": [".storybook/**/*", "vite-env.d.ts", "src/open_inwoner/react"],
"exclude": ["node_modules"]
}