-
Notifications
You must be signed in to change notification settings - Fork 23
/
tsconfig.json
59 lines (59 loc) · 1.2 KB
/
tsconfig.json
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
59
{
// "extends": "aegir/src/config/tsconfig.aegir.json",
"compilerOptions": {
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"es2021",
"esnext"
],
"types": [
"vite/client",
"vite-plugin-svgr/client",
"mocha",
"jest",
"@storybook/types",
"vitest/globals",
"@testing-library/jest-dom"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ES2022",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"outDir": "dist",
"declarationDir": "dist",
"jsx": "react-jsx",
"rootDir": "."
},
"include": [
"src/**/*",
"dev/**/*",
"test/**/*"
],
"exclude": [
"src/**/*.stories.*",
"node_modules",
"storybook-static",
"build",
"dist",
"vite.config.ts",
"package.json"
],
"plugins": [
{
"name": "typescript-plugin-css-modules",
"options": {
"classnameTransform": "camelCaseOnly"
}
}
]
}