-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.23 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.23 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
44
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"moduleResolution": "bundler",
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2019",
"lib": ["DOM", "esnext"],
"module": "esnext",
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"paths": {
"@koobiq/react-primitives": ["./packages/primitives/src"],
"@koobiq/react-components": ["./packages/components/src"],
"@koobiq/react-core": ["./packages/core/src"],
"@koobiq/react-icons": ["./packages/icons/src"]
},
"types": ["vite/client", "@testing-library/jest-dom/vitest", "node"]
},
"include": ["**/*", "./.storybook/**/*"],
"exclude": [
"node_modules",
"**/dist",
"templates",
"coverage",
"storybook-static"
]
}