Enabling shorter import paths [automatic]
This commit is contained in:
parent
19a95956b7
commit
fff6e7c7fa
89
.github/workflows/ci.yaml
vendored
89
.github/workflows/ci.yaml
vendored
@ -1,89 +0,0 @@
|
||||
name: ci
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- develop
|
||||
pull_request:
|
||||
branches:
|
||||
- develop
|
||||
|
||||
jobs:
|
||||
|
||||
test_lint:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ !github.event.created }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
- run: npm ci
|
||||
- name: Making sure 'npm run lint' and 'npm run format' does not changes anything.
|
||||
run: |
|
||||
npm run lint:check
|
||||
npm run format:check
|
||||
|
||||
test_node:
|
||||
runs-on: ${{ matrix.os }}
|
||||
needs: test_lint
|
||||
strategy:
|
||||
matrix:
|
||||
node: [ '14', '13', '12' ]
|
||||
os: [ windows-latest, ubuntu-latest ]
|
||||
name: Test with Node v${{ matrix.node }} on ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: npm run test
|
||||
|
||||
|
||||
trigger_publish:
|
||||
name: Trigger publish.yaml workflow if package.json version updated ( and secrets.PAT is set ).
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
PAT: ${{secrets.PAT}}
|
||||
if: github.event_name == 'push' && github.event.head_commit.author.name != 'ts_ci'
|
||||
needs: test_node
|
||||
steps:
|
||||
|
||||
- name: Get version on latest
|
||||
id: v_latest
|
||||
uses: garronej/github_actions_toolkit@v1.9
|
||||
with:
|
||||
action_name: get_package_json_version
|
||||
owner: ${{github.repository_owner}}
|
||||
repo: ${{github.event.repository.name}}
|
||||
branch: latest
|
||||
compare_to_version: '0.0.0'
|
||||
|
||||
- name: Get version on develop
|
||||
id: v_develop
|
||||
uses: garronej/github_actions_toolkit@v1.9
|
||||
with:
|
||||
action_name: get_package_json_version
|
||||
owner: ${{github.repository_owner}}
|
||||
repo: ${{github.event.repository.name}}
|
||||
branch: ${{ github.sha }}
|
||||
compare_to_version: ${{steps.v_latest.outputs.version || '0.0.0'}}
|
||||
|
||||
- name: 'Trigger the ''publish'' workflow'
|
||||
if: ${{ !!env.PAT && steps.v_develop.outputs.compare_result == '1' }}
|
||||
uses: garronej/github_actions_toolkit@v1.9
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||
with:
|
||||
action_name: dispatch_event
|
||||
owner: ${{github.repository_owner}}
|
||||
repo: ${{github.event.repository.name}}
|
||||
event_type: publish
|
||||
client_payload_json: |
|
||||
${{
|
||||
format(
|
||||
'{{"from_version":"{0}","to_version":"{1}","repo":"{2}"}}',
|
||||
steps.v_latest.outputs.version,
|
||||
steps.v_develop.outputs.version,
|
||||
github.event.repository.name
|
||||
)
|
||||
}}
|
106
.github/workflows/publish.yaml
vendored
106
.github/workflows/publish.yaml
vendored
@ -1,106 +0,0 @@
|
||||
on:
|
||||
repository_dispatch:
|
||||
types: publish
|
||||
|
||||
jobs:
|
||||
update_changelog_and_sync_package_lock_version:
|
||||
name: Update CHANGELOG.md and make sure package.json and package-lock.json versions matches.
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Synchronize package.json and package-lock.json version if needed.
|
||||
uses: garronej/github_actions_toolkit@v1.9
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||
with:
|
||||
action_name: sync_package_and_package_lock_version
|
||||
owner: ${{github.repository_owner}}
|
||||
repo: ${{github.event.client_payload.repo}}
|
||||
branch: develop
|
||||
commit_author_email: ts_ci@github.com
|
||||
- name: Update CHANGELOG.md
|
||||
if: ${{ !!github.event.client_payload.from_version }}
|
||||
uses: garronej/github_actions_toolkit@v1.9
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||
with:
|
||||
action_name: update_changelog
|
||||
owner: ${{github.repository_owner}}
|
||||
repo: ${{github.event.client_payload.repo}}
|
||||
branch_behind: latest
|
||||
branch_ahead: develop
|
||||
commit_author_email: ts_ci@github.com
|
||||
exclude_commit_from_author_names_json: '["ts_ci"]'
|
||||
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
needs: update_changelog_and_sync_package_lock_version
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: develop
|
||||
- name: Remove .github directory, useless on 'latest' branch
|
||||
run: rm -r .github
|
||||
- name: Remove branch 'latest'
|
||||
continue-on-error: true
|
||||
run: |
|
||||
git branch -d latest || true
|
||||
git push origin :latest
|
||||
- name: Create the new 'latest' branch
|
||||
run: |
|
||||
git branch latest
|
||||
git checkout latest
|
||||
- uses: actions/setup-node@v1
|
||||
- run: npm ci
|
||||
- run: npm run enable_short_import_path
|
||||
env:
|
||||
DRY_RUN: "0"
|
||||
- name: (DEBUG) Show how the files have been moved to enable short import
|
||||
run: ls -lR
|
||||
- name: Publishing on NPM
|
||||
run: |
|
||||
if [ "$(npm show . version)" = "$VERSION" ]; then
|
||||
echo "This version is already published"
|
||||
exit 0
|
||||
fi
|
||||
if [ "$NPM_TOKEN" = "" ]; then
|
||||
echo "Can't publish on NPM, You must first create a secret called NPM_TOKEN that contains your NPM auth token. https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets"
|
||||
false
|
||||
fi
|
||||
echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > .npmrc
|
||||
npm publish
|
||||
rm .npmrc
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
VERSION: ${{ github.event.client_payload.to_version }}
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git config --local user.email "ts_ci@github.com"
|
||||
git config --local user.name "ts_ci"
|
||||
git add -A
|
||||
git commit -am "Enabling shorter import paths [automatic]"
|
||||
- run: git push origin latest
|
||||
- name: Release body
|
||||
id: id_rb
|
||||
run: |
|
||||
if [ "$FROM_VERSION" = "" ]; then
|
||||
echo "::set-output name=body::🚀"
|
||||
else
|
||||
echo "::set-output name=body::📋 [CHANGELOG](https://github.com/$OWNER/$REPO/blob/$REF/CHANGELOG.md)"
|
||||
fi
|
||||
env:
|
||||
FROM_VERSION: ${{ github.event.client_payload.from_version }}
|
||||
OWNER: ${{github.repository_owner}}
|
||||
REPO: ${{github.event.client_payload.repo}}
|
||||
REF: v${{github.event.client_payload.to_version}}
|
||||
- name: Create Release
|
||||
uses: garronej/create-release@master
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||
with:
|
||||
tag_name: v${{ github.event.client_payload.to_version }}
|
||||
release_name: Release v${{ github.event.client_payload.to_version }}
|
||||
branch: latest
|
||||
draft: false
|
||||
prerelease: false
|
||||
body: ${{ steps.id_rb.outputs.body }}
|
37
bundle.js
Normal file
37
bundle.js
Normal file
@ -0,0 +1,37 @@
|
||||
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.keycloak_react_theming = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myObject = exports.myFunction = void 0;
|
||||
var myFunction_1 = require("./myFunction");
|
||||
Object.defineProperty(exports, "myFunction", { enumerable: true, get: function () { return myFunction_1.myFunction; } });
|
||||
var myObject_1 = require("./myObject");
|
||||
Object.defineProperty(exports, "myObject", { enumerable: true, get: function () { return myObject_1.myObject; } });
|
||||
|
||||
},{"./myFunction":2,"./myObject":3}],2:[function(require,module,exports){
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myFunction = void 0;
|
||||
function myFunction() {
|
||||
return Promise.resolve(["a", "b", "c"]);
|
||||
}
|
||||
exports.myFunction = myFunction;
|
||||
|
||||
},{}],3:[function(require,module,exports){
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myObject = void 0;
|
||||
var toUpperCase_1 = require("./tools/toUpperCase");
|
||||
exports.myObject = { "p": toUpperCase_1.toUpperCase("foo") };
|
||||
|
||||
},{"./tools/toUpperCase":4}],4:[function(require,module,exports){
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.toUpperCase = void 0;
|
||||
function toUpperCase(str) {
|
||||
return str.toUpperCase();
|
||||
}
|
||||
exports.toUpperCase = toUpperCase;
|
||||
|
||||
},{}]},{},[1])(1)
|
||||
});
|
||||
//# sourceMappingURL=bundle.js.map
|
1
bundle.js.map
Normal file
1
bundle.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"sources":["node_modules/browser-pack/_prelude.js","index.js","myFunction.js","myObject.js","tools/toUpperCase.js"],"names":[],"mappings":"AAAA;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;ACPA;AACA;AACA;AACA;AACA;AACA;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"generated.js","sourceRoot":"","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.myObject = exports.myFunction = void 0;\nvar myFunction_1 = require(\"./myFunction\");\nObject.defineProperty(exports, \"myFunction\", { enumerable: true, get: function () { return myFunction_1.myFunction; } });\nvar myObject_1 = require(\"./myObject\");\nObject.defineProperty(exports, \"myObject\", { enumerable: true, get: function () { return myObject_1.myObject; } });\n//# sourceMappingURL=index.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.myFunction = void 0;\nfunction myFunction() {\n return Promise.resolve([\"a\", \"b\", \"c\"]);\n}\nexports.myFunction = myFunction;\n//# sourceMappingURL=myFunction.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.myObject = void 0;\nvar toUpperCase_1 = require(\"./tools/toUpperCase\");\nexports.myObject = { \"p\": toUpperCase_1.toUpperCase(\"foo\") };\n//# sourceMappingURL=myObject.js.map","\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.toUpperCase = void 0;\nfunction toUpperCase(str) {\n return str.toUpperCase();\n}\nexports.toUpperCase = toUpperCase;\n//# sourceMappingURL=toUpperCase.js.map"]}
|
1
bundle.min.js
vendored
Normal file
1
bundle.min.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).keycloak_react_theming=e()}}((function(){return function e(t,n,o){function r(u,f){if(!n[u]){if(!t[u]){var c="function"==typeof require&&require;if(!f&&c)return c(u,!0);if(i)return i(u,!0);var d=new Error("Cannot find module '"+u+"'");throw d.code="MODULE_NOT_FOUND",d}var p=n[u]={exports:{}};t[u][0].call(p.exports,(function(e){return r(t[u][1][e]||e)}),p,p.exports,e,t,n,o)}return n[u].exports}for(var i="function"==typeof require&&require,u=0;u<o.length;u++)r(o[u]);return r}({1:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.myObject=n.myFunction=void 0;var o=e("./myFunction");Object.defineProperty(n,"myFunction",{enumerable:!0,get:function(){return o.myFunction}});var r=e("./myObject");Object.defineProperty(n,"myObject",{enumerable:!0,get:function(){return r.myObject}})},{"./myFunction":2,"./myObject":3}],2:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.myFunction=void 0,n.myFunction=function(){return Promise.resolve(["a","b","c"])}},{}],3:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.myObject=void 0;var o=e("./tools/toUpperCase");n.myObject={p:o.toUpperCase("foo")}},{"./tools/toUpperCase":4}],4:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.toUpperCase=void 0,n.toUpperCase=function(e){return e.toUpperCase()}},{}]},{},[1])(1)}));
|
2
index.d.ts
vendored
Normal file
2
index.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
export { myFunction } from "./myFunction";
|
||||
export { myObject } from "./myObject";
|
8
index.js
Normal file
8
index.js
Normal file
@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myObject = exports.myFunction = void 0;
|
||||
var myFunction_1 = require("./myFunction");
|
||||
Object.defineProperty(exports, "myFunction", { enumerable: true, get: function () { return myFunction_1.myFunction; } });
|
||||
var myObject_1 = require("./myObject");
|
||||
Object.defineProperty(exports, "myObject", { enumerable: true, get: function () { return myObject_1.myObject; } });
|
||||
//# sourceMappingURL=index.js.map
|
1
index.js.map
Normal file
1
index.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["src/index.ts"],"names":[],"mappings":";;;AAAA,2CAA0C;AAAjC,wGAAA,UAAU,OAAA;AACnB,uCAAsC;AAA7B,oGAAA,QAAQ,OAAA"}
|
1
myFunction.d.ts
vendored
Normal file
1
myFunction.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export declare function myFunction(): Promise<string[]>;
|
8
myFunction.js
Normal file
8
myFunction.js
Normal file
@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myFunction = void 0;
|
||||
function myFunction() {
|
||||
return Promise.resolve(["a", "b", "c"]);
|
||||
}
|
||||
exports.myFunction = myFunction;
|
||||
//# sourceMappingURL=myFunction.js.map
|
1
myFunction.js.map
Normal file
1
myFunction.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myFunction.js","sourceRoot":"","sources":["src/myFunction.ts"],"names":[],"mappings":";;;AAAA,SAAgB,UAAU;IACtB,OAAO,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;AAC5C,CAAC;AAFD,gCAEC"}
|
3
myObject.d.ts
vendored
Normal file
3
myObject.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
export declare const myObject: {
|
||||
p: string;
|
||||
};
|
6
myObject.js
Normal file
6
myObject.js
Normal file
@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.myObject = void 0;
|
||||
var toUpperCase_1 = require("./tools/toUpperCase");
|
||||
exports.myObject = { "p": toUpperCase_1.toUpperCase("foo") };
|
||||
//# sourceMappingURL=myObject.js.map
|
1
myObject.js.map
Normal file
1
myObject.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myObject.js","sourceRoot":"","sources":["src/myObject.ts"],"names":[],"mappings":";;;AAAA,mDAAkD;AAErC,QAAA,QAAQ,GAAG,EAAE,GAAG,EAAE,yBAAW,CAAC,KAAK,CAAC,EAAE,CAAC"}
|
60
package.json
60
package.json
@ -6,23 +6,8 @@
|
||||
"type": "git",
|
||||
"url": "git://github.com/garronej/keycloak-react-theming.git"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "node dist/test/",
|
||||
"cdn:bundle:.js": "simplifyify dist/index.js -s keycloak_react_theming -o dist/bundle.js --debug --bundle",
|
||||
"cdn:bundle:.min.js": "terser dist/bundle.js -cmo dist/bundle.min.js",
|
||||
"cdn:bundle": "npm run cdn:bundle:.js && npm run cdn:bundle:.min.js",
|
||||
"cdn:esm": "tsc -p tsconfig.esm.json",
|
||||
"cdn": "npm run cdn:bundle && npm run cdn:esm",
|
||||
"build": "tsc && npm run cdn",
|
||||
"enable_short_import_path": "npm run build && denoify_enable_short_npm_import_path",
|
||||
"lint:check": "eslint . --ext .ts,.tsx",
|
||||
"lint": "npm run lint:check -- --fix",
|
||||
"_format": "prettier '**/*.{ts,tsx,json,md}'",
|
||||
"format": "npm run _format -- --write",
|
||||
"format:check": "npm run _format -- --list-different"
|
||||
},
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"lint-staged": {
|
||||
"*.{ts,tsx}": [
|
||||
"eslint --fix"
|
||||
@ -39,11 +24,42 @@
|
||||
"author": "u/garronej",
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"src/",
|
||||
"!src/test/",
|
||||
"dist/",
|
||||
"!dist/test/",
|
||||
"!dist/tsconfig.tsbuildinfo"
|
||||
"src/index.ts",
|
||||
"src/myFunction.ts",
|
||||
"src/myObject.ts",
|
||||
"src/tools/getProjectRoot.ts",
|
||||
"src/tools/toUpperCase.ts",
|
||||
"bundle.js",
|
||||
"bundle.js.map",
|
||||
"bundle.min.js",
|
||||
"index.d.ts",
|
||||
"index.js",
|
||||
"index.js.map",
|
||||
"myFunction.d.ts",
|
||||
"myFunction.js",
|
||||
"myFunction.js.map",
|
||||
"myObject.d.ts",
|
||||
"myObject.js",
|
||||
"myObject.js.map",
|
||||
"tools/getProjectRoot.d.ts",
|
||||
"tools/getProjectRoot.js",
|
||||
"tools/getProjectRoot.js.map",
|
||||
"tools/toUpperCase.d.ts",
|
||||
"tools/toUpperCase.js",
|
||||
"tools/toUpperCase.js.map",
|
||||
"zz_esm/index.d.ts",
|
||||
"zz_esm/index.js",
|
||||
"zz_esm/index.js.map",
|
||||
"zz_esm/myFunction.d.ts",
|
||||
"zz_esm/myFunction.js",
|
||||
"zz_esm/myFunction.js.map",
|
||||
"zz_esm/myObject.d.ts",
|
||||
"zz_esm/myObject.js",
|
||||
"zz_esm/myObject.js.map",
|
||||
"zz_esm/tools/toUpperCase.d.ts",
|
||||
"zz_esm/tools/toUpperCase.js",
|
||||
"zz_esm/tools/toUpperCase.js.map",
|
||||
"zz_esm/tsconfig.esm.tsbuildinfo"
|
||||
],
|
||||
"keywords": [],
|
||||
"homepage": "https://github.com/garronej/keycloak-react-theming",
|
||||
|
1
test/getProjectRoot.d.ts
vendored
Normal file
1
test/getProjectRoot.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export {};
|
5
test/getProjectRoot.js
Normal file
5
test/getProjectRoot.js
Normal file
@ -0,0 +1,5 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var getProjectRoot_1 = require("../tools/getProjectRoot");
|
||||
console.log("Project root path: " + getProjectRoot_1.getProjectRoot() + " does it seems right ? If yes then PASS");
|
||||
//# sourceMappingURL=getProjectRoot.js.map
|
1
test/getProjectRoot.js.map
Normal file
1
test/getProjectRoot.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"getProjectRoot.js","sourceRoot":"","sources":["../src/test/getProjectRoot.ts"],"names":[],"mappings":";;AAAA,0DAAyD;AAEzD,OAAO,CAAC,GAAG,CACP,wBAAsB,+BAAc,EAAE,4CAAyC,CAClF,CAAC"}
|
1
test/index.d.ts
vendored
Normal file
1
test/index.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export {};
|
142
test/index.js
Normal file
142
test/index.js
Normal file
@ -0,0 +1,142 @@
|
||||
"use strict";
|
||||
//This will not run on deno, we need a separate test runner for Deno (./mod.ts).
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
var __generator = (this && this.__generator) || function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
var __values = (this && this.__values) || function(o) {
|
||||
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||||
if (m) return m.call(o);
|
||||
if (o && typeof o.length === "number") return {
|
||||
next: function () {
|
||||
if (o && i >= o.length) o = void 0;
|
||||
return { value: o && o[i++], done: !o };
|
||||
}
|
||||
};
|
||||
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var child_process = __importStar(require("child_process"));
|
||||
var path = __importStar(require("path"));
|
||||
var Deferred_1 = require("evt/tools/Deferred");
|
||||
var names = ["myFunction", "myObject", "getProjectRoot"];
|
||||
(function () { return __awaiter(void 0, void 0, void 0, function () {
|
||||
var _loop_1, names_1, names_1_1, name_1, e_1_1;
|
||||
var e_1, _a;
|
||||
return __generator(this, function (_b) {
|
||||
switch (_b.label) {
|
||||
case 0:
|
||||
if (!!process.env.FORK) {
|
||||
process.once("unhandledRejection", function (error) {
|
||||
throw error;
|
||||
});
|
||||
require(process.env.FORK);
|
||||
return [2 /*return*/];
|
||||
}
|
||||
_loop_1 = function (name_1) {
|
||||
var dExitCode, exitCode;
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0:
|
||||
console.log("Running: " + name_1);
|
||||
dExitCode = new Deferred_1.Deferred();
|
||||
child_process
|
||||
.fork(__filename, undefined, {
|
||||
"env": { "FORK": path.join(__dirname, name_1) },
|
||||
})
|
||||
.on("message", console.log)
|
||||
.once("exit", function (code) { return dExitCode.resolve(code !== null && code !== void 0 ? code : 1); });
|
||||
return [4 /*yield*/, dExitCode.pr];
|
||||
case 1:
|
||||
exitCode = _a.sent();
|
||||
if (exitCode !== 0) {
|
||||
console.log(name_1 + " exited with error code: " + exitCode);
|
||||
process.exit(exitCode);
|
||||
}
|
||||
console.log("\n");
|
||||
return [2 /*return*/];
|
||||
}
|
||||
});
|
||||
};
|
||||
_b.label = 1;
|
||||
case 1:
|
||||
_b.trys.push([1, 6, 7, 8]);
|
||||
names_1 = __values(names), names_1_1 = names_1.next();
|
||||
_b.label = 2;
|
||||
case 2:
|
||||
if (!!names_1_1.done) return [3 /*break*/, 5];
|
||||
name_1 = names_1_1.value;
|
||||
return [5 /*yield**/, _loop_1(name_1)];
|
||||
case 3:
|
||||
_b.sent();
|
||||
_b.label = 4;
|
||||
case 4:
|
||||
names_1_1 = names_1.next();
|
||||
return [3 /*break*/, 2];
|
||||
case 5: return [3 /*break*/, 8];
|
||||
case 6:
|
||||
e_1_1 = _b.sent();
|
||||
e_1 = { error: e_1_1 };
|
||||
return [3 /*break*/, 8];
|
||||
case 7:
|
||||
try {
|
||||
if (names_1_1 && !names_1_1.done && (_a = names_1.return)) _a.call(names_1);
|
||||
}
|
||||
finally { if (e_1) throw e_1.error; }
|
||||
return [7 /*endfinally*/];
|
||||
case 8: return [2 /*return*/];
|
||||
}
|
||||
});
|
||||
}); })();
|
||||
//# sourceMappingURL=index.js.map
|
1
test/index.js.map
Normal file
1
test/index.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/test/index.ts"],"names":[],"mappings":";AAAA,gFAAgF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEhF,2DAA+C;AAC/C,yCAA6B;AAC7B,+CAA8C;AAE9C,IAAM,KAAK,GAAG,CAAC,YAAY,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC;AAE3D,CAAC;;;;;;gBACG,IAAI,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,EAAE;oBACpB,OAAO,CAAC,IAAI,CAAC,oBAAoB,EAAE,UAAA,KAAK;wBACpC,MAAM,KAAK,CAAC;oBAChB,CAAC,CAAC,CAAC;oBAEH,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;oBAE1B,sBAAO;iBACV;oCAEU,MAAI;;;;;gCACX,OAAO,CAAC,GAAG,CAAC,cAAY,MAAM,CAAC,CAAC;gCAE1B,SAAS,GAAG,IAAI,mBAAQ,EAAU,CAAC;gCAEzC,aAAa;qCACR,IAAI,CAAC,UAAU,EAAE,SAAS,EAAE;oCACzB,KAAK,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,MAAI,CAAC,EAAE;iCAChD,CAAC;qCACD,EAAE,CAAC,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC;qCAC1B,IAAI,CAAC,MAAM,EAAE,UAAA,IAAI,IAAI,OAAA,SAAS,CAAC,OAAO,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,CAAC,CAAC,EAA5B,CAA4B,CAAC,CAAC;gCAEvC,qBAAM,SAAS,CAAC,EAAE,EAAA;;gCAA7B,QAAQ,GAAG,SAAkB;gCAEnC,IAAI,QAAQ,KAAK,CAAC,EAAE;oCAChB,OAAO,CAAC,GAAG,CAAI,MAAI,iCAA4B,QAAU,CAAC,CAAC;oCAC3D,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;iCAC1B;gCAED,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;;;;;;;;gBAnBH,UAAA,SAAA,KAAK,CAAA;;;;gBAAnB;8CAAM,MAAI;;;;;;;;;;;;;;;;;;;;;KAqBlB,CAAC,EAAE,CAAC"}
|
1
test/myFunction.d.ts
vendored
Normal file
1
test/myFunction.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export {};
|
59
test/myFunction.js
Normal file
59
test/myFunction.js
Normal file
@ -0,0 +1,59 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
var __generator = (this && this.__generator) || function (thisArg, body) {
|
||||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
||||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
||||
function verb(n) { return function (v) { return step([n, v]); }; }
|
||||
function step(op) {
|
||||
if (f) throw new TypeError("Generator is already executing.");
|
||||
while (_) try {
|
||||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
||||
if (y = 0, t) op = [op[0] & 2, t.value];
|
||||
switch (op[0]) {
|
||||
case 0: case 1: t = op; break;
|
||||
case 4: _.label++; return { value: op[1], done: false };
|
||||
case 5: _.label++; y = op[1]; op = [0]; continue;
|
||||
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
||||
default:
|
||||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
||||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
||||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
||||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
||||
if (t[2]) _.ops.pop();
|
||||
_.trys.pop(); continue;
|
||||
}
|
||||
op = body.call(thisArg, _);
|
||||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
||||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
||||
}
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var __1 = require("..");
|
||||
var testing_1 = require("evt/tools/testing");
|
||||
var mustResolve = testing_1.getPromiseAssertionApi({
|
||||
"takeIntoAccountArraysOrdering": true,
|
||||
}).mustResolve;
|
||||
(function () { return __awaiter(void 0, void 0, void 0, function () {
|
||||
return __generator(this, function (_a) {
|
||||
switch (_a.label) {
|
||||
case 0: return [4 /*yield*/, mustResolve({
|
||||
"promise": __1.myFunction(),
|
||||
"expectedData": ["a", "b", "c"],
|
||||
"delay": 0,
|
||||
})];
|
||||
case 1:
|
||||
_a.sent();
|
||||
console.log("PASS");
|
||||
return [2 /*return*/];
|
||||
}
|
||||
});
|
||||
}); })();
|
||||
//# sourceMappingURL=myFunction.js.map
|
1
test/myFunction.js.map
Normal file
1
test/myFunction.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myFunction.js","sourceRoot":"","sources":["../src/test/myFunction.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAAgC;AAChC,6CAA2D;AAEnD,IAAA,WAAW,GAAK,gCAAsB,CAAC;IAC3C,+BAA+B,EAAE,IAAI;CACxC,CAAC,YAFiB,CAEhB;AAEH,CAAC;;;oBACG,qBAAM,WAAW,CAAC;oBACd,SAAS,EAAE,cAAU,EAAE;oBACvB,cAAc,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;oBAC/B,OAAO,EAAE,CAAC;iBACb,CAAC,EAAA;;gBAJF,SAIE,CAAC;gBAEH,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;;;;KACvB,CAAC,EAAE,CAAC"}
|
1
test/myObject.d.ts
vendored
Normal file
1
test/myObject.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export {};
|
27
test/myObject.js
Normal file
27
test/myObject.js
Normal file
@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var typeSafety_1 = require("evt/tools/typeSafety");
|
||||
var inDepth = __importStar(require("evt/tools/inDepth"));
|
||||
var __1 = require("..");
|
||||
typeSafety_1.assert(inDepth.same(__1.myObject, { "p": "FOO" }));
|
||||
console.log("PASS");
|
||||
//# sourceMappingURL=myObject.js.map
|
1
test/myObject.js.map
Normal file
1
test/myObject.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myObject.js","sourceRoot":"","sources":["../src/test/myObject.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,mDAA8C;AAC9C,yDAA6C;AAC7C,wBAA8B;AAE9B,mBAAM,CAAC,OAAO,CAAC,IAAI,CAAC,YAAQ,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC;AAE/C,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC"}
|
1
tools/getProjectRoot.d.ts
vendored
Normal file
1
tools/getProjectRoot.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export declare function getProjectRoot(): string;
|
39
tools/getProjectRoot.js
Normal file
39
tools/getProjectRoot.js
Normal file
@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.getProjectRoot = void 0;
|
||||
var fs = __importStar(require("fs"));
|
||||
var path = __importStar(require("path"));
|
||||
function getProjectRootRec(dirPath) {
|
||||
if (fs.existsSync(path.join(dirPath, "package.json"))) {
|
||||
return dirPath;
|
||||
}
|
||||
return getProjectRootRec(path.join(dirPath, ".."));
|
||||
}
|
||||
var result = undefined;
|
||||
function getProjectRoot() {
|
||||
if (result !== undefined) {
|
||||
return result;
|
||||
}
|
||||
return (result = getProjectRootRec(__dirname));
|
||||
}
|
||||
exports.getProjectRoot = getProjectRoot;
|
||||
//# sourceMappingURL=getProjectRoot.js.map
|
1
tools/getProjectRoot.js.map
Normal file
1
tools/getProjectRoot.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"getProjectRoot.js","sourceRoot":"","sources":["../src/tools/getProjectRoot.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,qCAAyB;AACzB,yCAA6B;AAE7B,SAAS,iBAAiB,CAAC,OAAe;IACtC,IAAI,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,cAAc,CAAC,CAAC,EAAE;QACnD,OAAO,OAAO,CAAC;KAClB;IACD,OAAO,iBAAiB,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC;AACvD,CAAC;AAED,IAAI,MAAM,GAAuB,SAAS,CAAC;AAE3C,SAAgB,cAAc;IAC1B,IAAI,MAAM,KAAK,SAAS,EAAE;QACtB,OAAO,MAAM,CAAC;KACjB;IAED,OAAO,CAAC,MAAM,GAAG,iBAAiB,CAAC,SAAS,CAAC,CAAC,CAAC;AACnD,CAAC;AAND,wCAMC"}
|
1
tools/toUpperCase.d.ts
vendored
Normal file
1
tools/toUpperCase.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export declare function toUpperCase(str: string): string;
|
8
tools/toUpperCase.js
Normal file
8
tools/toUpperCase.js
Normal file
@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.toUpperCase = void 0;
|
||||
function toUpperCase(str) {
|
||||
return str.toUpperCase();
|
||||
}
|
||||
exports.toUpperCase = toUpperCase;
|
||||
//# sourceMappingURL=toUpperCase.js.map
|
1
tools/toUpperCase.js.map
Normal file
1
tools/toUpperCase.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"toUpperCase.js","sourceRoot":"","sources":["../src/tools/toUpperCase.ts"],"names":[],"mappings":";;;AAAA,SAAgB,WAAW,CAAC,GAAW;IACnC,OAAO,GAAG,CAAC,WAAW,EAAE,CAAC;AAC7B,CAAC;AAFD,kCAEC"}
|
1006
tsconfig.tsbuildinfo
Normal file
1006
tsconfig.tsbuildinfo
Normal file
File diff suppressed because it is too large
Load Diff
2
zz_esm/index.d.ts
vendored
Normal file
2
zz_esm/index.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
export { myFunction } from "./myFunction";
|
||||
export { myObject } from "./myObject";
|
3
zz_esm/index.js
Normal file
3
zz_esm/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
export { myFunction } from "./myFunction";
|
||||
export { myObject } from "./myObject";
|
||||
//# sourceMappingURL=index.js.map
|
1
zz_esm/index.js.map
Normal file
1
zz_esm/index.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|
1
zz_esm/myFunction.d.ts
vendored
Normal file
1
zz_esm/myFunction.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export declare function myFunction(): Promise<string[]>;
|
4
zz_esm/myFunction.js
Normal file
4
zz_esm/myFunction.js
Normal file
@ -0,0 +1,4 @@
|
||||
export function myFunction() {
|
||||
return Promise.resolve(["a", "b", "c"]);
|
||||
}
|
||||
//# sourceMappingURL=myFunction.js.map
|
1
zz_esm/myFunction.js.map
Normal file
1
zz_esm/myFunction.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myFunction.js","sourceRoot":"","sources":["../src/myFunction.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,UAAU;IACtB,OAAO,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;AAC5C,CAAC"}
|
3
zz_esm/myObject.d.ts
vendored
Normal file
3
zz_esm/myObject.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
export declare const myObject: {
|
||||
p: string;
|
||||
};
|
3
zz_esm/myObject.js
Normal file
3
zz_esm/myObject.js
Normal file
@ -0,0 +1,3 @@
|
||||
import { toUpperCase } from "./tools/toUpperCase";
|
||||
export var myObject = { "p": toUpperCase("foo") };
|
||||
//# sourceMappingURL=myObject.js.map
|
1
zz_esm/myObject.js.map
Normal file
1
zz_esm/myObject.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"myObject.js","sourceRoot":"","sources":["../src/myObject.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,MAAM,CAAC,IAAM,QAAQ,GAAG,EAAE,GAAG,EAAE,WAAW,CAAC,KAAK,CAAC,EAAE,CAAC"}
|
1
zz_esm/tools/toUpperCase.d.ts
vendored
Normal file
1
zz_esm/tools/toUpperCase.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
export declare function toUpperCase(str: string): string;
|
4
zz_esm/tools/toUpperCase.js
Normal file
4
zz_esm/tools/toUpperCase.js
Normal file
@ -0,0 +1,4 @@
|
||||
export function toUpperCase(str) {
|
||||
return str.toUpperCase();
|
||||
}
|
||||
//# sourceMappingURL=toUpperCase.js.map
|
1
zz_esm/tools/toUpperCase.js.map
Normal file
1
zz_esm/tools/toUpperCase.js.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"toUpperCase.js","sourceRoot":"","sources":["../../src/tools/toUpperCase.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,WAAW,CAAC,GAAW;IACnC,OAAO,GAAG,CAAC,WAAW,EAAE,CAAC;AAC7B,CAAC"}
|
796
zz_esm/tsconfig.esm.tsbuildinfo
Normal file
796
zz_esm/tsconfig.esm.tsbuildinfo
Normal file
@ -0,0 +1,796 @@
|
||||
{
|
||||
"program": {
|
||||
"fileInfos": {
|
||||
"../../node_modules/typescript/lib/lib.es5.d.ts": {
|
||||
"version": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
|
||||
"signature": "9622e8bd7cc72a7dab819a8011ecbf81d443638082e5cb99ecf2e75ff56ffc9d",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.d.ts": {
|
||||
"version": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
|
||||
"signature": "dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2016.d.ts": {
|
||||
"version": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
|
||||
"signature": "7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.d.ts": {
|
||||
"version": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
|
||||
"signature": "8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.d.ts": {
|
||||
"version": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
|
||||
"signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.dom.d.ts": {
|
||||
"version": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
|
||||
"signature": "abadddbf660adeec27e9a56584907d52fa1d6e1e1dc49f639a921baa951b7a84",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.core.d.ts": {
|
||||
"version": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
|
||||
"signature": "46ee15e9fefa913333b61eaf6b18885900b139867d89832a515059b62cf16a17",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts": {
|
||||
"version": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
|
||||
"signature": "43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts": {
|
||||
"version": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
|
||||
"signature": "cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts": {
|
||||
"version": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
|
||||
"signature": "8b2a5df1ce95f78f6b74f1a555ccdb6baab0486b42d8345e0871dd82811f9b9a",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts": {
|
||||
"version": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
|
||||
"signature": "2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts": {
|
||||
"version": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
|
||||
"signature": "7207e317a2cb07a177e7d963ab7b8c0e85dde7f9ddb50351f830239bf597569e",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts": {
|
||||
"version": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
|
||||
"signature": "cb609802a8698aa28b9c56331d4b53f590ca3c1c3a255350304ae3d06017779d",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts": {
|
||||
"version": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
|
||||
"signature": "3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": {
|
||||
"version": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
|
||||
"signature": "9d122b7e8c1a5c72506eea50c0973cba55b92b5532d5cafa8a6ce2c547d57551",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts": {
|
||||
"version": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
|
||||
"signature": "3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.object.d.ts": {
|
||||
"version": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
|
||||
"signature": "17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts": {
|
||||
"version": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
|
||||
"signature": "7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.string.d.ts": {
|
||||
"version": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
|
||||
"signature": "6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts": {
|
||||
"version": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
|
||||
"signature": "12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts": {
|
||||
"version": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
|
||||
"signature": "b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts": {
|
||||
"version": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
|
||||
"signature": "0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts": {
|
||||
"version": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
|
||||
"signature": "a40c4d82bf13fcded295ac29f354eb7d40249613c15e07b53f2fc75e45e16359",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts": {
|
||||
"version": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
|
||||
"signature": "df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts": {
|
||||
"version": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
|
||||
"signature": "bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts": {
|
||||
"version": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
|
||||
"signature": "c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts": {
|
||||
"version": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
|
||||
"signature": "7b5a10e3c897fabece5a51aa85b4111727d7adb53c2734b5d37230ff96802a09",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts": {
|
||||
"version": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
|
||||
"signature": "89bf2b7a601b73ea4311eda9c41f86a58994fec1bee3b87c4a14d68d9adcdcbd",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../src/myFunction.ts": {
|
||||
"version": "7249fa895f72d7501ae252fce9e073eb84ace49885ebf4d2f06107f15c79f285",
|
||||
"signature": "ba3646e5f0c39d85bb337708b66ae51e191426af5a2656a076101b4dc4ce82a5",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../src/tools/toUpperCase.ts": {
|
||||
"version": "0f2ac3e73064d6a8ec7f3ef8c726ecc9bd2cc34045cf18b2ec8142790d75bbe7",
|
||||
"signature": "55216b3caf3325c8aa65aab47b84e826fca2bb492e229733d5599cc2ba4958fe",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../src/myObject.ts": {
|
||||
"version": "8ea557a16044aa27d0b26accef2fc043b2769b2d95831473e756768dd9889ffa",
|
||||
"signature": "88081ccb40fb0cc10562beaded86512dbb4cbceba5ccbd242b2b2d2a484297c2",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../src/index.ts": {
|
||||
"version": "e09deee6134452a8127080ed67f7f899ff9b952bca09fb95490101c82f2669d8",
|
||||
"signature": "e09deee6134452a8127080ed67f7f899ff9b952bca09fb95490101c82f2669d8",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/comment-json/index.d.ts": {
|
||||
"version": "c401118ea6c6daa9f196013b0622c602d4faec565bb1cc6ca751d2a8fc295498",
|
||||
"signature": "c401118ea6c6daa9f196013b0622c602d4faec565bb1cc6ca751d2a8fc295498",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/json-schema/index.d.ts": {
|
||||
"version": "3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27",
|
||||
"signature": "3a1e165b22a1cb8df82c44c9a09502fd2b33f160cd277de2cd3a055d8e5c6b27",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/globals.d.ts": {
|
||||
"version": "829fcfff513ac68aae602034a6e0d2e30a2f4fa32881157ba6a3002bc949f685",
|
||||
"signature": "829fcfff513ac68aae602034a6e0d2e30a2f4fa32881157ba6a3002bc949f685",
|
||||
"affectsGlobalScope": true
|
||||
},
|
||||
"../../node_modules/@types/node/async_hooks.d.ts": {
|
||||
"version": "138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a",
|
||||
"signature": "138476cfdccbb9e2c7e06602bc216af843a56c4f3469a79106bc660ba94bd66a",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/buffer.d.ts": {
|
||||
"version": "fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d",
|
||||
"signature": "fe892fea1e75a442fffb4a604d7eeb451e858787a9f2f01c4e83bf12a3b5048d",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/events.d.ts": {
|
||||
"version": "8059976d7f408e08be353de1833172139bbaa70fc33d01b98249f7226c122119",
|
||||
"signature": "8059976d7f408e08be353de1833172139bbaa70fc33d01b98249f7226c122119",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/stream.d.ts": {
|
||||
"version": "8e2f9031210a8fc27af8844bf69f964307d6013c90336bea9fb5d6ba43248c78",
|
||||
"signature": "8e2f9031210a8fc27af8844bf69f964307d6013c90336bea9fb5d6ba43248c78",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/dns.d.ts": {
|
||||
"version": "05e732266b5a36789fd9eb846b1f45fec1b6e318b740e3f20fc22fd95f9ebf31",
|
||||
"signature": "05e732266b5a36789fd9eb846b1f45fec1b6e318b740e3f20fc22fd95f9ebf31",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/net.d.ts": {
|
||||
"version": "56a15cc211894d79aa44cbb46c276bfd3f10458a61bff2dec99114db8a7e71e3",
|
||||
"signature": "56a15cc211894d79aa44cbb46c276bfd3f10458a61bff2dec99114db8a7e71e3",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/child_process.d.ts": {
|
||||
"version": "d5c80b931928fbd06f967ce4bdca24fbb37523773ac2c7c87458a689154351fb",
|
||||
"signature": "d5c80b931928fbd06f967ce4bdca24fbb37523773ac2c7c87458a689154351fb",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/cluster.d.ts": {
|
||||
"version": "fcd718b2feb2820a9844536a1a2fbc77a3da90820e02894d40f879a789f46560",
|
||||
"signature": "fcd718b2feb2820a9844536a1a2fbc77a3da90820e02894d40f879a789f46560",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/console.d.ts": {
|
||||
"version": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
|
||||
"signature": "525c8fc510d9632d2a0a9de2d41c3ac1cdd79ff44d3b45c6d81cacabb683528d",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/constants.d.ts": {
|
||||
"version": "ece75b9bfc916f9ccc4e8a9ddee1dda5c987804fbe3b60a01fc120fae731c2ce",
|
||||
"signature": "ece75b9bfc916f9ccc4e8a9ddee1dda5c987804fbe3b60a01fc120fae731c2ce",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/crypto.d.ts": {
|
||||
"version": "4e146a0b69c893ae1538aff8b76f4e8796755bdd45050a83099348d59863437e",
|
||||
"signature": "4e146a0b69c893ae1538aff8b76f4e8796755bdd45050a83099348d59863437e",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/dgram.d.ts": {
|
||||
"version": "a1dc9cfe8be39cbcef62692510b450ab35553ef39382715c88763d0c477704a9",
|
||||
"signature": "a1dc9cfe8be39cbcef62692510b450ab35553ef39382715c88763d0c477704a9",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/domain.d.ts": {
|
||||
"version": "985c3d1b62a4a4f563e3ca3e3a47717cff7d82c81883d62ecf08d8417eb477c4",
|
||||
"signature": "985c3d1b62a4a4f563e3ca3e3a47717cff7d82c81883d62ecf08d8417eb477c4",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/querystring.d.ts": {
|
||||
"version": "8969e0b4d22ca77ad011c8fc4a25ec5d515bdfae4ecbd22608ed0d5c38829c1e",
|
||||
"signature": "8969e0b4d22ca77ad011c8fc4a25ec5d515bdfae4ecbd22608ed0d5c38829c1e",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/url.d.ts": {
|
||||
"version": "c6b71a0585467900820167370738cfc256e9635471725a7ba1d24a3a262984e5",
|
||||
"signature": "c6b71a0585467900820167370738cfc256e9635471725a7ba1d24a3a262984e5",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/fs.d.ts": {
|
||||
"version": "1733741cf2adc5926ac58c66004268cdc3d34b2ff6250f5114db14253ea02ce1",
|
||||
"signature": "1733741cf2adc5926ac58c66004268cdc3d34b2ff6250f5114db14253ea02ce1",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/http.d.ts": {
|
||||
"version": "40a80f579e92750f3e695b44a704f8d44d331a67d77623f2e57914da1369d68e",
|
||||
"signature": "40a80f579e92750f3e695b44a704f8d44d331a67d77623f2e57914da1369d68e",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/tls.d.ts": {
|
||||
"version": "4bdb7b15b3f9a3ee0b856c7b991d0e522f8ce92f7b66ae8ac00e61d1269dd10a",
|
||||
"signature": "4bdb7b15b3f9a3ee0b856c7b991d0e522f8ce92f7b66ae8ac00e61d1269dd10a",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/http2.d.ts": {
|
||||
"version": "b6b09f944889a23f19eba6e0f112030e55160c5e1a225012ab2349c582ba5595",
|
||||
"signature": "b6b09f944889a23f19eba6e0f112030e55160c5e1a225012ab2349c582ba5595",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/https.d.ts": {
|
||||
"version": "152af7c23ec219f632afa2d861abc65993f56cd39a4f3a4018515dbc05950a74",
|
||||
"signature": "152af7c23ec219f632afa2d861abc65993f56cd39a4f3a4018515dbc05950a74",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/inspector.d.ts": {
|
||||
"version": "3a0bdc4c5b6f84a1abb5356d7a7fa1f96ac6c5b5646eec3ef2b33c1ed095e155",
|
||||
"signature": "3a0bdc4c5b6f84a1abb5356d7a7fa1f96ac6c5b5646eec3ef2b33c1ed095e155",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/module.d.ts": {
|
||||
"version": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66",
|
||||
"signature": "03394bf8deb8781b490ae9266a843fbdf00647947d79e25fcbf1d89a9e9c8a66",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/os.d.ts": {
|
||||
"version": "1a5366b0d4d0153955fd85777c72d35979dabc0537649da6eade09007c0d080a",
|
||||
"signature": "1a5366b0d4d0153955fd85777c72d35979dabc0537649da6eade09007c0d080a",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/path.d.ts": {
|
||||
"version": "61c84c3b0eb6e60196d15ae5e21793a1d4241c547f0bdd0529ffae838d1a073c",
|
||||
"signature": "61c84c3b0eb6e60196d15ae5e21793a1d4241c547f0bdd0529ffae838d1a073c",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts": {
|
||||
"version": "272522db288a7e03f14ff930407b776357082efce20369ea42239a57af9c7f81",
|
||||
"signature": "272522db288a7e03f14ff930407b776357082efce20369ea42239a57af9c7f81",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/process.d.ts": {
|
||||
"version": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389",
|
||||
"signature": "3a8848a9c307429b861402cc69bc472ffe0c05b86474fc158723169161e16389",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/punycode.d.ts": {
|
||||
"version": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c",
|
||||
"signature": "3f6a1fd73c9dc3bd7f4b79bc075297ca6527904df69b0f2c2c94e4c4c7d9a32c",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/readline.d.ts": {
|
||||
"version": "81ef2751228318b1c7c6b35ccae2ea39ef275add30319e746bfd4658208a0519",
|
||||
"signature": "81ef2751228318b1c7c6b35ccae2ea39ef275add30319e746bfd4658208a0519",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/vm.d.ts": {
|
||||
"version": "3cb4cbade80dde6e045b01d34582625ea45fc2f1080085ef671cefbc9c75625d",
|
||||
"signature": "3cb4cbade80dde6e045b01d34582625ea45fc2f1080085ef671cefbc9c75625d",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/util.d.ts": {
|
||||
"version": "8bf10278b5c28698a73f800fde911bcc33d405a15f7bddab1c4ade637b69a822",
|
||||
"signature": "8bf10278b5c28698a73f800fde911bcc33d405a15f7bddab1c4ade637b69a822",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/repl.d.ts": {
|
||||
"version": "0811662f95fabfc05b8f1cefcc46b351092cfc7d2a3e849475c51e2578c5c485",
|
||||
"signature": "0811662f95fabfc05b8f1cefcc46b351092cfc7d2a3e849475c51e2578c5c485",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/string_decoder.d.ts": {
|
||||
"version": "17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948",
|
||||
"signature": "17e157df6125098a1a34eb4d201ee4ac03bbe97e471ab5627bb2c40fce555948",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/timers.d.ts": {
|
||||
"version": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
|
||||
"signature": "b40652bf8ce4a18133b31349086523b219724dca8df3448c1a0742528e7ad5b9",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/trace_events.d.ts": {
|
||||
"version": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662",
|
||||
"signature": "978aecd2e6bc2ac094e9a35eda98ff8586713857b3655e7c98ca5ed8f7d50662",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/tty.d.ts": {
|
||||
"version": "a185b8e0d7a4ae078a79339d63e98177813aac39256f69f788eaf5c360aa756f",
|
||||
"signature": "a185b8e0d7a4ae078a79339d63e98177813aac39256f69f788eaf5c360aa756f",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/v8.d.ts": {
|
||||
"version": "e880a08fbb0d9ee2f733f9183f4d1bdb75bc9e0e64060a8a1fc30540791fcded",
|
||||
"signature": "e880a08fbb0d9ee2f733f9183f4d1bdb75bc9e0e64060a8a1fc30540791fcded",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/worker_threads.d.ts": {
|
||||
"version": "69fc4a10650eff3416ba5c2f7ce71744734928a7135ebe5a63c61d2d03ca3ec3",
|
||||
"signature": "69fc4a10650eff3416ba5c2f7ce71744734928a7135ebe5a63c61d2d03ca3ec3",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/zlib.d.ts": {
|
||||
"version": "13918848c4e07d1094164112bd7fd151d61cbb949ceef340a2a4595cd609afb6",
|
||||
"signature": "13918848c4e07d1094164112bd7fd151d61cbb949ceef340a2a4595cd609afb6",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts": {
|
||||
"version": "9af6a9de7bd818e68c4236f20027ff4b19387c2269a6952945d1a716c177cc4d",
|
||||
"signature": "9af6a9de7bd818e68c4236f20027ff4b19387c2269a6952945d1a716c177cc4d",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/assert.d.ts": {
|
||||
"version": "3497438242251378cf232f36a7fabac70e7bd8229d68dac8955534e63ffc8ff4",
|
||||
"signature": "3497438242251378cf232f36a7fabac70e7bd8229d68dac8955534e63ffc8ff4",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/base.d.ts": {
|
||||
"version": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
|
||||
"signature": "e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/node/index.d.ts": {
|
||||
"version": "f6f04f1c31ff0314a67d7911e49a60e76cd5fc4e50c6374e506cb85916fadec9",
|
||||
"signature": "f6f04f1c31ff0314a67d7911e49a60e76cd5fc4e50c6374e506cb85916fadec9",
|
||||
"affectsGlobalScope": false
|
||||
},
|
||||
"../../node_modules/@types/parse-json/index.d.ts": {
|
||||
"version": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
|
||||
"signature": "2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b",
|
||||
"affectsGlobalScope": false
|
||||
}
|
||||
},
|
||||
"options": {
|
||||
"module": 5,
|
||||
"target": 1,
|
||||
"lib": [
|
||||
"lib.es2015.d.ts",
|
||||
"lib.dom.d.ts"
|
||||
],
|
||||
"esModuleInterop": true,
|
||||
"declaration": true,
|
||||
"outDir": "./",
|
||||
"sourceMap": true,
|
||||
"newLine": 1,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"incremental": true,
|
||||
"strict": true,
|
||||
"downlevelIteration": true,
|
||||
"jsx": 4,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"project": "../../tsconfig.esm.json",
|
||||
"configFilePath": "../../tsconfig.esm.json"
|
||||
},
|
||||
"referencedMap": {
|
||||
"../../node_modules/@types/node/base.d.ts": [
|
||||
"../../node_modules/@types/node/assert.d.ts",
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/child_process.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/cluster.d.ts": [
|
||||
"../../node_modules/@types/node/child_process.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/crypto.d.ts": [
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/dgram.d.ts": [
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/domain.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/events.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/fs.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/http.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/http2.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/fs.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/https.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/index.d.ts": [
|
||||
"../../node_modules/@types/node/base.d.ts",
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/inspector.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/net.d.ts": [
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
||||
"../../node_modules/@types/node/async_hooks.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/readline.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/repl.d.ts": [
|
||||
"../../node_modules/@types/node/readline.d.ts",
|
||||
"../../node_modules/@types/node/util.d.ts",
|
||||
"../../node_modules/@types/node/vm.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/stream.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/tls.d.ts": [
|
||||
"../../node_modules/@types/node/crypto.d.ts",
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts": [
|
||||
"../../node_modules/@types/node/async_hooks.d.ts",
|
||||
"../../node_modules/@types/node/buffer.d.ts",
|
||||
"../../node_modules/@types/node/child_process.d.ts",
|
||||
"../../node_modules/@types/node/cluster.d.ts",
|
||||
"../../node_modules/@types/node/console.d.ts",
|
||||
"../../node_modules/@types/node/constants.d.ts",
|
||||
"../../node_modules/@types/node/crypto.d.ts",
|
||||
"../../node_modules/@types/node/dgram.d.ts",
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/domain.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/fs.d.ts",
|
||||
"../../node_modules/@types/node/globals.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/http2.d.ts",
|
||||
"../../node_modules/@types/node/https.d.ts",
|
||||
"../../node_modules/@types/node/inspector.d.ts",
|
||||
"../../node_modules/@types/node/module.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/os.d.ts",
|
||||
"../../node_modules/@types/node/path.d.ts",
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts",
|
||||
"../../node_modules/@types/node/process.d.ts",
|
||||
"../../node_modules/@types/node/punycode.d.ts",
|
||||
"../../node_modules/@types/node/querystring.d.ts",
|
||||
"../../node_modules/@types/node/readline.d.ts",
|
||||
"../../node_modules/@types/node/repl.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/string_decoder.d.ts",
|
||||
"../../node_modules/@types/node/timers.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/trace_events.d.ts",
|
||||
"../../node_modules/@types/node/tty.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts",
|
||||
"../../node_modules/@types/node/util.d.ts",
|
||||
"../../node_modules/@types/node/v8.d.ts",
|
||||
"../../node_modules/@types/node/vm.d.ts",
|
||||
"../../node_modules/@types/node/worker_threads.d.ts",
|
||||
"../../node_modules/@types/node/zlib.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/tty.d.ts": [
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/url.d.ts": [
|
||||
"../../node_modules/@types/node/querystring.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/worker_threads.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/zlib.d.ts": [
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../src/index.ts": [
|
||||
"../../src/myFunction.ts",
|
||||
"../../src/myObject.ts"
|
||||
],
|
||||
"../../src/myObject.ts": [
|
||||
"../../src/tools/toUpperCase.ts"
|
||||
]
|
||||
},
|
||||
"exportedModulesMap": {
|
||||
"../../node_modules/@types/node/base.d.ts": [
|
||||
"../../node_modules/@types/node/assert.d.ts",
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/child_process.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/cluster.d.ts": [
|
||||
"../../node_modules/@types/node/child_process.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/crypto.d.ts": [
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/dgram.d.ts": [
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/domain.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/events.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/fs.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/http.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/http2.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/fs.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/https.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/index.d.ts": [
|
||||
"../../node_modules/@types/node/base.d.ts",
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/inspector.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/net.d.ts": [
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts": [
|
||||
"../../node_modules/@types/node/async_hooks.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/readline.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/repl.d.ts": [
|
||||
"../../node_modules/@types/node/readline.d.ts",
|
||||
"../../node_modules/@types/node/util.d.ts",
|
||||
"../../node_modules/@types/node/vm.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/stream.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/tls.d.ts": [
|
||||
"../../node_modules/@types/node/crypto.d.ts",
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts": [
|
||||
"../../node_modules/@types/node/async_hooks.d.ts",
|
||||
"../../node_modules/@types/node/buffer.d.ts",
|
||||
"../../node_modules/@types/node/child_process.d.ts",
|
||||
"../../node_modules/@types/node/cluster.d.ts",
|
||||
"../../node_modules/@types/node/console.d.ts",
|
||||
"../../node_modules/@types/node/constants.d.ts",
|
||||
"../../node_modules/@types/node/crypto.d.ts",
|
||||
"../../node_modules/@types/node/dgram.d.ts",
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/domain.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/fs.d.ts",
|
||||
"../../node_modules/@types/node/globals.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/http2.d.ts",
|
||||
"../../node_modules/@types/node/https.d.ts",
|
||||
"../../node_modules/@types/node/inspector.d.ts",
|
||||
"../../node_modules/@types/node/module.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/os.d.ts",
|
||||
"../../node_modules/@types/node/path.d.ts",
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts",
|
||||
"../../node_modules/@types/node/process.d.ts",
|
||||
"../../node_modules/@types/node/punycode.d.ts",
|
||||
"../../node_modules/@types/node/querystring.d.ts",
|
||||
"../../node_modules/@types/node/readline.d.ts",
|
||||
"../../node_modules/@types/node/repl.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/string_decoder.d.ts",
|
||||
"../../node_modules/@types/node/timers.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/trace_events.d.ts",
|
||||
"../../node_modules/@types/node/tty.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts",
|
||||
"../../node_modules/@types/node/util.d.ts",
|
||||
"../../node_modules/@types/node/v8.d.ts",
|
||||
"../../node_modules/@types/node/vm.d.ts",
|
||||
"../../node_modules/@types/node/worker_threads.d.ts",
|
||||
"../../node_modules/@types/node/zlib.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/tty.d.ts": [
|
||||
"../../node_modules/@types/node/net.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/url.d.ts": [
|
||||
"../../node_modules/@types/node/querystring.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/worker_threads.d.ts": [
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../node_modules/@types/node/zlib.d.ts": [
|
||||
"../../node_modules/@types/node/stream.d.ts"
|
||||
],
|
||||
"../../src/index.ts": [
|
||||
"../../src/myFunction.ts",
|
||||
"../../src/myObject.ts"
|
||||
]
|
||||
},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../node_modules/@types/comment-json/index.d.ts",
|
||||
"../../node_modules/@types/json-schema/index.d.ts",
|
||||
"../../node_modules/@types/node/assert.d.ts",
|
||||
"../../node_modules/@types/node/async_hooks.d.ts",
|
||||
"../../node_modules/@types/node/base.d.ts",
|
||||
"../../node_modules/@types/node/buffer.d.ts",
|
||||
"../../node_modules/@types/node/child_process.d.ts",
|
||||
"../../node_modules/@types/node/cluster.d.ts",
|
||||
"../../node_modules/@types/node/console.d.ts",
|
||||
"../../node_modules/@types/node/constants.d.ts",
|
||||
"../../node_modules/@types/node/crypto.d.ts",
|
||||
"../../node_modules/@types/node/dgram.d.ts",
|
||||
"../../node_modules/@types/node/dns.d.ts",
|
||||
"../../node_modules/@types/node/domain.d.ts",
|
||||
"../../node_modules/@types/node/events.d.ts",
|
||||
"../../node_modules/@types/node/fs.d.ts",
|
||||
"../../node_modules/@types/node/globals.d.ts",
|
||||
"../../node_modules/@types/node/http.d.ts",
|
||||
"../../node_modules/@types/node/http2.d.ts",
|
||||
"../../node_modules/@types/node/https.d.ts",
|
||||
"../../node_modules/@types/node/index.d.ts",
|
||||
"../../node_modules/@types/node/inspector.d.ts",
|
||||
"../../node_modules/@types/node/module.d.ts",
|
||||
"../../node_modules/@types/node/net.d.ts",
|
||||
"../../node_modules/@types/node/os.d.ts",
|
||||
"../../node_modules/@types/node/path.d.ts",
|
||||
"../../node_modules/@types/node/perf_hooks.d.ts",
|
||||
"../../node_modules/@types/node/process.d.ts",
|
||||
"../../node_modules/@types/node/punycode.d.ts",
|
||||
"../../node_modules/@types/node/querystring.d.ts",
|
||||
"../../node_modules/@types/node/readline.d.ts",
|
||||
"../../node_modules/@types/node/repl.d.ts",
|
||||
"../../node_modules/@types/node/stream.d.ts",
|
||||
"../../node_modules/@types/node/string_decoder.d.ts",
|
||||
"../../node_modules/@types/node/timers.d.ts",
|
||||
"../../node_modules/@types/node/tls.d.ts",
|
||||
"../../node_modules/@types/node/trace_events.d.ts",
|
||||
"../../node_modules/@types/node/ts3.6/base.d.ts",
|
||||
"../../node_modules/@types/node/tty.d.ts",
|
||||
"../../node_modules/@types/node/url.d.ts",
|
||||
"../../node_modules/@types/node/util.d.ts",
|
||||
"../../node_modules/@types/node/v8.d.ts",
|
||||
"../../node_modules/@types/node/vm.d.ts",
|
||||
"../../node_modules/@types/node/worker_threads.d.ts",
|
||||
"../../node_modules/@types/node/zlib.d.ts",
|
||||
"../../node_modules/@types/parse-json/index.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.dom.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.core.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.generator.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.iterable.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.promise.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.proxy.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.reflect.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.symbol.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2016.array.include.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2016.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.intl.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.object.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.string.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.intl.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.promise.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2018.regexp.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es2020.bigint.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.es5.d.ts",
|
||||
"../../node_modules/typescript/lib/lib.esnext.intl.d.ts",
|
||||
"../../src/index.ts",
|
||||
"../../src/myFunction.ts",
|
||||
"../../src/myObject.ts",
|
||||
"../../src/tools/toUpperCase.ts"
|
||||
]
|
||||
},
|
||||
"version": "4.1.5"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user