-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.build.json
48 lines (47 loc) · 1.11 KB
/
tsconfig.build.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
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"declarationDir": "dist",
"emitDeclarationOnly": true, // Only generate .d.ts files
"baseUrl": ".",
"paths": {
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@utils/*": ["src/utils/*"],
"@root/*": ["src/*"],
"@context/*": ["src/context/*"],
"@controllers/*": ["src/controllers/*"],
"ruio": ["node_modules/ruio"]
},
"outDir": "./dist"
},
"include": ["src/components/RuioWrapper.tsx", "src/types/cssModules.d.ts"], // Include your entry point and the global types file
"exclude": [
"node_modules",
"dist",
"public",
"tests",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/__tests__/**",
"**/__mocks__/**",
"**/__snapshots__/**",
"src/dummy",
"src/main.tsx",
"src/App.tsx",
"jest.config.ts",
"jest.setup.ts",
"tsconfig.json",
"tsconfig.build.json",
"*.fig",
"*.snap",
"*.svg",
"*.tsbuildinfo",
"*.eslint.js",
".vscode",
".DS_Store"
]
}