-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
44 lines (44 loc) · 1.22 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
{
"compilerOptions": {
"baseUrl": "src",
"outDir": "./dist",
"module": "node16",
"target": "ES2017",
"jsx": "react-jsx",
"lib": ["ESNext", "ES5", "ES6", "DOM", "DOM.Iterable"],
"sourceMap": true,
"strict": true,
"allowJs": false,
"moduleResolution": "node16",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "./dist/@types/",
"declarationMap": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"types": ["node", "jest", "@testing-library/jest-dom"],
"skipLibCheck": true,
"paths": {
"@constants": ["constants.ts"],
"@components/*": ["components/*"],
"@hooks/*": ["hooks/*"],
"@locales": ["locales"],
"@matchMediaMock": ["test-utils/__mocks__/matchMedia.mock"],
"@rsc": ["index.ts"],
"@rsc/alpha": ["alpha"],
"@rsc/beta": ["beta"],
"@rsc/rc": ["rc"],
"@specBuilder/*": ["specBuilder/*"],
"@stories/*": ["stories/*"],
"@svgPaths": ["svgPaths"],
"@test-utils": ["test-utils"],
"@themes": ["themes"],
"@themes/*": ["themes/*"],
"@utils": ["utils"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules", "dist", "dist-storybook"]
}