Skip to content

Commit 05b38f8

Browse files
authored
"emitDeclarationOnly": true (#1332)
1 parent 196d4aa commit 05b38f8

File tree

10 files changed

+15
-7
lines changed

10 files changed

+15
-7
lines changed

packages/ariakit/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"declarationDir": "types",
2020
"composite": true,
2121
"skipLibCheck": true,
22+
"emitDeclarationOnly": true
2223
},
2324
"include": ["src"],
2425
"references": [

packages/core/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"outDir": "dist",
1818
"declaration": true,
1919
"declarationDir": "types",
20+
"emitDeclarationOnly": true,
2021
"composite": true,
2122
"skipLibCheck": true
2223
},

packages/mantine/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"declarationDir": "types",
2020
"composite": true,
2121
"skipLibCheck": true,
22+
"emitDeclarationOnly": true
2223
},
2324
"include": ["src"],
2425
"references": [

packages/react/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"declaration": true,
1919
"declarationDir": "types",
2020
"composite": true,
21-
"skipLibCheck": true
21+
"skipLibCheck": true,
22+
"emitDeclarationOnly": true
2223
},
2324
"include": ["src"],
2425
"references": [

packages/server-util/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"declaration": true,
1919
"declarationDir": "types",
2020
"composite": true,
21-
"skipLibCheck": true
21+
"skipLibCheck": true,
22+
"emitDeclarationOnly": true
2223
},
2324
"include": ["src"],
2425
"references": [

packages/shadcn/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
"composite": true,
2121
"skipLibCheck": true,
2222
"baseUrl": ".",
23+
"emitDeclarationOnly": true,
2324
"paths": {
24-
"@/*": [
25-
"./src/*"
26-
]
25+
"@/*": ["./src/*"]
2726
}
2827
},
2928
"include": ["src"],

packages/xl-docx-exporter/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"declarationDir": "types",
2020
"composite": true,
2121
"skipLibCheck": true,
22+
"emitDeclarationOnly": true,
2223
"paths": {
2324
"@shared/*": ["../../shared/*"]
2425
}

packages/xl-multi-column/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"declaration": true,
1919
"declarationDir": "types",
2020
"composite": true,
21-
"skipLibCheck": true
21+
"skipLibCheck": true,
22+
"emitDeclarationOnly": true
2223
},
2324
"include": ["src"]
2425
}

packages/xl-pdf-exporter/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"declarationDir": "types",
2020
"composite": true,
2121
"skipLibCheck": true,
22+
"emitDeclarationOnly": true,
2223
"paths": {
2324
"@shared/*": ["../../shared/*"]
2425
}

shared/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"isolatedModules": true,
1616
"jsx": "react-jsx",
1717
"composite": true,
18-
"outDir": "dist"
18+
"outDir": "dist",
19+
"emitDeclarationOnly": true
1920
},
2021
"include": ["."],
2122
"references": [

0 commit comments

Comments
 (0)