-
Notifications
You must be signed in to change notification settings - Fork 147
/
tsconfig.json
37 lines (36 loc) · 1.16 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
{
"include": ["src/**/*", "declaration.d.ts"],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"checkJs": false,
"jsx": "preserve",
"strict": true,
"moduleResolution": "node",
"rootDirs": ["src", "intro"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"emitDeclarationOnly": true,
"isolatedModules": true,
"declarationDir": "lib",
"outDir": "lib",
"declarationMap": true,
"baseUrl": "./",
"paths": {
"@components": ["./src/components/index"],
"@components/*": ["./src/components/*"],
"@hooks": ["./src/hooks/index"],
"@hooks/*": ["./src/hooks/*"],
"@primitives": ["./src/primitives/index"],
"@primitives/*": ["./src/primitives/*"],
"@types": ["./src/types/index"],
"@types/*": ["./src/types/*"],
"@utils": ["./src/utils/index"],
"@utils/*": ["./src/utils/*"]
}
}
}