-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 1.48 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"exclude": [
"src/**/__mocks__",
"src/**/__fixtures__",
"src/**/__stories__",
"src/**/__tests__",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
"src/**/stories",
"dist",
"vitest.config.ts",
"vitest.setup.ts",
"rslib.config.ts"
],
"compilerOptions": {
"sourceMap": false,
"target": "ES2020",
"module": "ESNext",
"lib": ["DOM", "ES2020", "ES2021", "ES2022"],
"declaration": true,
"declarationMap": false,
"emitDeclarationOnly": true,
"outDir": "./dist/types",
"rootDir": "./src",
"strict": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"forceConsistentCasingInFileNames": true,
"useUnknownInCatchVariables": true,
"strictNullChecks": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
"preserveSymlinks": false,
"jsx": "react-jsx",
"composite": false,
"types": ["vitest/globals", "node", "@testing-library/jest-dom"],
"typeRoots": ["src/lib/types", "node_modules/@types", "node_modules"],
"removeComments": false,
"erasableSyntaxOnly": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.d.ts"
]
}