File tree 5 files changed +21
-59
lines changed
5 files changed +21
-59
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
** /.env
4
4
5
5
node_modules /
6
- Build /
7
- Test /
6
+ Export /
8
7
9
8
* .js
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"description" : " Unofficial wrapper for the EasyBill API" ,
3
- "version" : " 1.0.2 " ,
3
+ "version" : " 1.0.3 " ,
4
4
"name" : " easybill" ,
5
5
"homepage" : " https://github.com/ReceiptPlease/EasyBill" ,
6
6
"author" : " PhoneDroid" ,
17
17
" EasyBill" ,
18
18
" API"
19
19
],
20
- "main" : " Source/mod.ts" ,
20
+ "main" : " Export/mod.js" ,
21
+ "types" : " Export/mod.d.ts" ,
22
+ "files" : [ " Export" ],
21
23
"scripts" : {
22
24
"build" : " bash .config/Tasks/Build.sh" ,
23
- "dev" : " bash .config/Tasks/Develop.sh" ,
24
25
"generate:types" : " bash .config/Tasks/Types.sh"
25
26
},
26
27
"dependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
- "include" : [
3
- " ./Source/**/*" ,
4
- " ./Test/**/*"
2
+ "include" : [ " ./Source/**/*.ts" ],
3
+
4
+ "exclude" : [
5
+ " node_modules" ,
6
+ " lib"
5
7
],
6
8
7
9
8
10
"compilerOptions" : {
9
11
10
- "baseUrl" : " ./ Source" ,
11
- "outDir" : " ./Build " ,
12
+ "baseUrl" : " Source" ,
13
+ "outDir" : " Export " ,
12
14
13
- "module" : " commonjs" ,
15
+ "moduleResolution" : " node" ,
16
+ "module" : " ESNext" ,
14
17
"target" : " ESNext" ,
15
- "strict" : true ,
16
18
19
+ "forceConsistentCasingInFileNames" : true ,
20
+ "esModuleInterop" : true ,
17
21
"isolatedModules" : true ,
18
- "skipLibCheck" : true
22
+ "declarationMap" : true ,
23
+ "skipLibCheck" : true ,
24
+ "declaration" : true ,
25
+ "sourceMap" : true ,
26
+ "strict" : true
19
27
}
20
28
}
You can’t perform that action at this time.
0 commit comments