-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.base.json
71 lines (71 loc) · 1.67 KB
/
tsconfig.base.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
60
61
62
63
64
65
66
67
68
69
70
71
{
"compilerOptions": {
"target": "ES2022",
"outDir": "./dist",
"declaration": true,
"declarationDir": "dist",
"noEmit": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "./",
"baseUrl": ".",
"isolatedModules": true,
"removeComments": false,
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"types": [
"node",
"@testing-library/dom",
"@testing-library/jest-dom",
"vitest/globals"
],
"lib": [
"ES2021",
"ES2022",
"ES2021.String",
"DOM",
"DOM.Iterable",
"ESNext",
"ESNext.String"
],
"jsx": "preserve",
"module": "ESNext",
"resolveJsonModule": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"shared/tailwind": ["packages/shared/tailwind.ts"],
"shared/styles.css": ["packages/shared/styles.css"],
"shared/vite-config": ["packages/shared/vite-config.ts"],
"shared/components/*": ["packages/shared/components/*"],
"shared/components": ["packages/shared/components/index.ts"],
"shared/*": ["packages/shared/*"],
"shared": ["packages/shared"]
}
},
"include": [
"typings.d.ts",
"packages",
"packages/*",
"packages/**/*",
"packages/**/*.ts",
"packages/**/*.tsx",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
".next/**/*",
"dist",
"**/dist",
"tests",
"**/exportsTest.ts",
"**/exportsTest.ts",
"packages/urlstate/exportsTest.ts",
"exportsTest.ts"
]
}