File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ node_modules
2
2
.cache
3
3
.next
4
4
storybook-static
5
+ dist
Original file line number Diff line number Diff line change
1
+ src
2
+ .github
1
3
node_modules
2
4
.cache
3
- .next
5
+ .next
6
+ .storybook
7
+ tsconfig.json
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @acmucsd/components" ,
3
- "version" : " 1.0.6 " ,
3
+ "version" : " 1.0.7 " ,
4
4
"description" : " Component library for ACMUCSD websites." ,
5
- "main" : " index.js" ,
5
+ "main" : " dist/index.js" ,
6
+ "types" : " dist/index.d.ts" ,
6
7
"scripts" : {
8
+ "build" : " tsc" ,
7
9
"test" : " echo \" Error: no test specified\" && exit 1" ,
8
10
"storybook" : " storybook dev -p 6006" ,
9
11
"build-storybook" : " storybook build"
Original file line number Diff line number Diff line change 22
22
"allowUnreachableCode" : false ,
23
23
"noFallthroughCasesInSwitch" : true ,
24
24
"target" : " es5" ,
25
- "outDir" : " out " ,
25
+ "outDir" : " dist " ,
26
26
"declaration" : true ,
27
27
"sourceMap" : true ,
28
28
"esModuleInterop" : true ,
31
31
"skipLibCheck" : true ,
32
32
"forceConsistentCasingInFileNames" : true ,
33
33
"jsx" : " preserve" ,
34
- "noEmit" : true ,
35
34
"isolatedModules" : true ,
36
35
"incremental" : true ,
37
- "baseUrl" : " ." ,
38
36
"paths" : {
39
37
"@/public/*" : [
40
38
" ./public/*"
You can’t perform that action at this time.
0 commit comments