File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ Thumbs.db
58
58
# Added by coconfig
59
59
.eslintignore
60
60
.npmignore
61
- tsconfig.json
62
61
tsconfig.build.json
63
62
.commitlintrc.json
64
63
jest.config.cjs
Original file line number Diff line number Diff line change
1
+ {
2
+ "include" : [
3
+ " @types/**/*" ,
4
+ " src/**/*" ,
5
+ " __tests__/**/*" ,
6
+ " __mocks__/**/*" ,
7
+ " coconfig.ts" ,
8
+ " vitest.config.ts" ,
9
+ " tsup.config.ts"
10
+ ],
11
+ "exclude" : [
12
+ " node_modules" ,
13
+ " build"
14
+ ],
15
+ "compilerOptions" : {
16
+ "lib" : [
17
+ " ES2022" ,
18
+ " DOM"
19
+ ],
20
+ "module" : " NodeNext" ,
21
+ "moduleResolution" : " NodeNext" ,
22
+ "target" : " ES2019" ,
23
+ "declaration" : true ,
24
+ "sourceMap" : true ,
25
+ "outDir" : " ./build" ,
26
+ "incremental" : true ,
27
+ "isolatedModules" : true ,
28
+ "strict" : true ,
29
+ "baseUrl" : " ./src" ,
30
+ "allowSyntheticDefaultImports" : true ,
31
+ "esModuleInterop" : true ,
32
+ "experimentalDecorators" : true ,
33
+ "skipLibCheck" : true
34
+ }
35
+ }
You can’t perform that action at this time.
0 commit comments