-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Del Core
committed
Sep 10, 2023
1 parent
a5ad460
commit b76c47b
Showing
22 changed files
with
387 additions
and
2,834 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
#!/usr/bin/env node | ||
const path = require('path'); | ||
|
||
const packageJson = require('../package.json'); | ||
|
||
require(path.join('..', packageJson.main)); | ||
require(path.join('..', 'dist', 'index.js')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"extends": "../../tsconfig.packages.json", | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"target": "es6", | ||
"esModuleInterop": true, | ||
"resolveJsonModule": true, | ||
"moduleResolution": "node", | ||
"lib": [ | ||
"es5", | ||
"scripthost", | ||
"es2015.core", | ||
"es2015.collection", | ||
"es2015.symbol", | ||
"es2015.iterable", | ||
"es2015.promise", | ||
"es2016", | ||
"es2017" | ||
] | ||
"rootDir": "src", | ||
"outDir": "dist" | ||
}, | ||
"include": ["./src/**/*.ts"] | ||
"references": [ | ||
{ "path": "../types" }, | ||
{ "path": "../core" }, | ||
{ "path": "../fetcher" }, | ||
{ "path": "../validator" }, | ||
{ "path": "../initializer" }, | ||
{ "path": "../fetcher" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
#!/usr/bin/env node | ||
const path = require('path'); | ||
|
||
const packageJson = require('../package.json'); | ||
|
||
require(path.join('..', packageJson.main)); | ||
require(path.join('..', 'dist', 'index.js')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"extends": "../../tsconfig.packages.json", | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"target": "es6", | ||
"esModuleInterop": true, | ||
"resolveJsonModule": true, | ||
"moduleResolution": "node", | ||
"lib": [ | ||
"es5", | ||
"scripthost", | ||
"es2015.core", | ||
"es2015.collection", | ||
"es2015.symbol", | ||
"es2015.iterable", | ||
"es2015.promise", | ||
"es2016", | ||
"es2017" | ||
] | ||
"rootDir": "src", | ||
"outDir": "dist" | ||
}, | ||
"include": ["./src/**/*.ts"] | ||
"references": [ | ||
{ "path": "../types" }, | ||
{ "path": "../core" }, | ||
{ "path": "../fetcher" }, | ||
{ "path": "../validator" }, | ||
{ "path": "../initializer" }, | ||
{ "path": "../fetcher" } | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.