File tree Expand file tree Collapse file tree 3 files changed +9
-27
lines changed Expand file tree Collapse file tree 3 files changed +9
-27
lines changed Original file line number Diff line number Diff line change 27
27
},
28
28
"scripts" : {
29
29
"prepare" : " pnpm run build" ,
30
- "build" : " npx vite build && tsc -p tsconfig.esm.json " ,
30
+ "build" : " npx vite build && tsc --listEmittedFiles " ,
31
31
"test" : " vitest run" ,
32
32
"test-watch" : " vitest" ,
33
33
"preversion" : " pnpm run build" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "include" : [" src" , " types " ],
2
+ "include" : [" src" ],
3
3
"compilerOptions" : {
4
- "target" : " es5" ,
5
4
"lib" : [" dom" , " esnext" ],
6
- "importHelpers" : true ,
7
- "declaration" : false ,
8
- "rootDir" : " ./src" ,
5
+ "importHelpers" : true ,
9
6
"strict" : true ,
10
7
"noImplicitAny" : true ,
11
8
"strictNullChecks" : true ,
17
14
"noUnusedParameters" : true ,
18
15
"noImplicitReturns" : true ,
19
16
"noFallthroughCasesInSwitch" : true ,
20
- "moduleResolution" : " node" ,
21
- "baseUrl" : " ./" ,
22
- "paths" : {
23
- "*" : [" src/*" , " node_modules/*" ]
24
- },
25
- "jsx" : " react" ,
26
17
"esModuleInterop" : true ,
27
- "typeRoots" : [" ./node_modules/@types/" ]
18
+ "module" : " esnext" ,
19
+ "target" : " ES2020" ,
20
+ "declaration" : true ,
21
+ "moduleResolution" : " node" ,
22
+ "emitDeclarationOnly" : true ,
23
+ "outDir" : " dist" ,
28
24
}
29
25
}
You can’t perform that action at this time.
0 commit comments