@codecompose/typescript-config 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -3
- package/single-library.json +9 -0
- package/single-react-library.json +12 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecompose/typescript-config",
|
|
3
3
|
"description": "Opinionated reusable TypeScript configurations",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Thijs Koerselman",
|
|
7
7
|
"publishConfig": {
|
|
@@ -20,10 +20,12 @@
|
|
|
20
20
|
],
|
|
21
21
|
"files": [
|
|
22
22
|
"base.json",
|
|
23
|
-
"nextjs.json",
|
|
24
23
|
"library.json",
|
|
24
|
+
"nextjs.json",
|
|
25
25
|
"react-library.json",
|
|
26
|
-
"service.json"
|
|
26
|
+
"service.json",
|
|
27
|
+
"single-library.json",
|
|
28
|
+
"single-react-library.json"
|
|
27
29
|
],
|
|
28
30
|
"devDependencies": {
|
|
29
31
|
"eslint": "^8.57.0",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "A Single React Component Library",
|
|
4
|
+
"extends": "./base.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"lib": ["dom", "dom.iterable", "es2023"],
|
|
7
|
+
"jsx": "react-jsx",
|
|
8
|
+
|
|
9
|
+
/* AND if you're building for a library: */
|
|
10
|
+
"declaration": true
|
|
11
|
+
}
|
|
12
|
+
}
|