├── .devcontainer.json ├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── Push.yml │ └── codeql-analysis.yml ├── .gitignore ├── .gitpod.yml ├── .prettierrc ├── .releaserc ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── Dockerfile.dev ├── LICENSE ├── README.md ├── Testing ├── README.md ├── Runner │ ├── Utils │ │ ├── findTests.ts │ │ ├── installTestsDependencies.ts │ │ ├── moduleFileFinder.ts │ │ ├── resolvePath.ts │ │ └── run.ts │ └── index.ts └── Tests │ ├── Axios │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Axios.test.ts │ │ └── index.ts │ └── tsconfig.json │ ├── DotImport │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── DotImport.test.ts │ │ └── index.ts │ └── tsconfig.json │ ├── Fastify │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Library │ │ │ └── Fastify.ts │ │ ├── Modules │ │ │ └── HealthCheck │ │ │ │ ├── HealthCheckRoute.test.ts │ │ │ │ └── HealthCheckRoute.ts │ │ ├── TemplateSuite.test.ts │ │ └── Utils │ │ │ ├── moduleFileFinder.ts │ │ │ └── resolvePath.ts │ └── tsconfig.json │ ├── JSNonExtPaths │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── JSNonExtPaths.test.ts │ │ ├── Module │ │ │ ├── HelloWorld │ │ │ │ ├── HelloWorld.test.ts │ │ │ │ └── index.ts │ │ │ └── Random │ │ │ │ └── index.ts │ │ └── Utils │ │ │ ├── Math.test.ts │ │ │ ├── Math.ts │ │ │ ├── random.js │ │ │ └── randomjs.test.ts │ └── tsconfig.json │ ├── JSPaths │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── JSPaths.test.ts │ │ ├── Module │ │ │ ├── HelloWorld │ │ │ │ └── index.ts │ │ │ └── Random │ │ │ │ └── index.ts │ │ └── Utils │ │ │ ├── Math.ts │ │ │ └── random.js │ └── tsconfig.json │ ├── Lab │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── LabTest.test.ts │ │ └── Utils │ │ │ └── Math.ts │ └── tsconfig.json │ ├── Paths │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Module │ │ │ └── HelloWorld │ │ │ │ └── index.ts │ │ ├── Path.test.ts │ │ └── Utils │ │ │ └── Math.ts │ └── tsconfig.json │ ├── React-SSR │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── Home.test.tsx │ │ ├── Home.tsx │ │ ├── React-SSR.test.ts │ │ └── Server.tsx │ └── tsconfig.json │ ├── SimilarFindFileFolder │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Library │ │ │ ├── React.test.ts │ │ │ ├── React.ts │ │ │ └── ReactFlight │ │ │ │ ├── ReactFlight.test.ts │ │ │ │ └── index.ts │ │ └── SimilarFindFile.test.ts │ └── tsconfig.json │ ├── TSConfig │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── Components │ │ │ └── Title.tsx │ │ ├── Main.tsx │ │ ├── Render.tsx │ │ └── TSConfig.test.ts │ ├── tsconfig.json │ └── tsconfig.random.json │ ├── TSConfigExtends │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── Components │ │ │ └── Title.tsx │ │ ├── Main.tsx │ │ ├── Render.tsx │ │ └── TSConfigExtends.test.ts │ ├── tsconfig.json │ ├── tsconfig.random.json │ └── tsconfig.ssr.json │ ├── TSExtPaths │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Module │ │ │ ├── HelloWorld │ │ │ │ └── index.ts │ │ │ └── Random │ │ │ │ └── index.ts │ │ ├── TSExtPaths.test.ts │ │ └── Utils │ │ │ ├── Math.ts │ │ │ ├── random.test.ts │ │ │ └── random.ts │ └── tsconfig.json │ ├── TSNonExtPaths │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── Module │ │ │ ├── HelloWorld │ │ │ │ ├── HelloWorld.test.ts │ │ │ │ └── index.ts │ │ │ └── Random │ │ │ │ ├── Random.test.ts │ │ │ │ └── index.ts │ │ ├── TSNonExtPaths.test.ts │ │ └── Utils │ │ │ ├── Math.ts │ │ │ └── random.ts │ └── tsconfig.json │ ├── Template │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── TemplateSuite.test.ts │ └── tsconfig.json │ ├── Winston │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── WinstonSuite.test.ts │ └── tsconfig.json │ └── folderImport │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── FolderImport.test.ts │ └── Modules │ │ ├── Hello │ │ ├── Hello.test.ts │ │ └── index.ts │ │ └── Random │ │ ├── Random.ts │ │ └── index.ts │ └── tsconfig.json ├── bin ├── Utils │ ├── Logging │ │ └── index.ts │ ├── buildPath.ts │ └── tsSystem.ts ├── build.ts └── tsconfig.json ├── docs └── CHANGELOG.md ├── package.json ├── src ├── Utils.ts ├── findFiles.test.ts ├── findFiles.ts ├── fixtures │ └── JS_Files │ │ ├── randomFile1.js │ │ └── randomFile1Ext.js ├── index.ts └── types.ts └── tsconfig.json /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.github/workflows/Push.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.releaserc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Dockerfile.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/README.md -------------------------------------------------------------------------------- /Testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/README.md -------------------------------------------------------------------------------- /Testing/Runner/Utils/findTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/Utils/findTests.ts -------------------------------------------------------------------------------- /Testing/Runner/Utils/installTestsDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/Utils/installTestsDependencies.ts -------------------------------------------------------------------------------- /Testing/Runner/Utils/moduleFileFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/Utils/moduleFileFinder.ts -------------------------------------------------------------------------------- /Testing/Runner/Utils/resolvePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/Utils/resolvePath.ts -------------------------------------------------------------------------------- /Testing/Runner/Utils/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/Utils/run.ts -------------------------------------------------------------------------------- /Testing/Runner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Runner/index.ts -------------------------------------------------------------------------------- /Testing/Tests/Axios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/README.md -------------------------------------------------------------------------------- /Testing/Tests/Axios/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Axios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/package.json -------------------------------------------------------------------------------- /Testing/Tests/Axios/src/Axios.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/src/Axios.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Axios/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/src/index.ts -------------------------------------------------------------------------------- /Testing/Tests/Axios/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Axios/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/DotImport/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/DotImport/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/DotImport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/DotImport/package.json -------------------------------------------------------------------------------- /Testing/Tests/DotImport/src/DotImport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/DotImport/src/DotImport.test.ts -------------------------------------------------------------------------------- /Testing/Tests/DotImport/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/DotImport/src/index.ts -------------------------------------------------------------------------------- /Testing/Tests/DotImport/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/DotImport/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/Fastify/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Fastify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/package.json -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/Library/Fastify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/Library/Fastify.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/Modules/HealthCheck/HealthCheckRoute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/Modules/HealthCheck/HealthCheckRoute.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/Modules/HealthCheck/HealthCheckRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/Modules/HealthCheck/HealthCheckRoute.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/TemplateSuite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/TemplateSuite.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/Utils/moduleFileFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/Utils/moduleFileFinder.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/src/Utils/resolvePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/src/Utils/resolvePath.ts -------------------------------------------------------------------------------- /Testing/Tests/Fastify/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Fastify/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/package.json -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/JSNonExtPaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/JSNonExtPaths.test.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Module/HelloWorld/HelloWorld.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Module/HelloWorld/HelloWorld.test.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Module/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Module/HelloWorld/index.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Module/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Module/Random/index.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Utils/Math.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Utils/Math.test.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Utils/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Utils/random.js -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/src/Utils/randomjs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/src/Utils/randomjs.test.ts -------------------------------------------------------------------------------- /Testing/Tests/JSNonExtPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSNonExtPaths/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/package.json -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/src/JSPaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/src/JSPaths.test.ts -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/src/Module/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/src/Module/HelloWorld/index.ts -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/src/Module/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/src/Module/Random/index.ts -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/src/Utils/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/src/Utils/random.js -------------------------------------------------------------------------------- /Testing/Tests/JSPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/JSPaths/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/Lab/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Lab/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Lab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Lab/package.json -------------------------------------------------------------------------------- /Testing/Tests/Lab/src/LabTest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Lab/src/LabTest.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Lab/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Lab/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/Lab/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Lab/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/Paths/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Paths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/package.json -------------------------------------------------------------------------------- /Testing/Tests/Paths/src/Module/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/src/Module/HelloWorld/index.ts -------------------------------------------------------------------------------- /Testing/Tests/Paths/src/Path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/src/Path.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Paths/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/Paths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Paths/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/README.md -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/package.json -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/src/App.tsx -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/src/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/src/Home.test.tsx -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/src/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/src/Home.tsx -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/src/React-SSR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/src/React-SSR.test.ts -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/src/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/src/Server.tsx -------------------------------------------------------------------------------- /Testing/Tests/React-SSR/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/React-SSR/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/README.md -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/package.json -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/src/Library/React.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/src/Library/React.test.ts -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/src/Library/React.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/src/Library/React.ts -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/src/Library/ReactFlight/ReactFlight.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/src/Library/ReactFlight/ReactFlight.test.ts -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/src/Library/ReactFlight/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/src/Library/ReactFlight/index.ts -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/src/SimilarFindFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/src/SimilarFindFile.test.ts -------------------------------------------------------------------------------- /Testing/Tests/SimilarFindFileFolder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/SimilarFindFileFolder/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/package.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/src/App.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/src/Components/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/src/Components/Title.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/src/Main.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/src/Render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/src/Render.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/src/TSConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/src/TSConfig.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfig/tsconfig.random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfig/tsconfig.random.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/package.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/src/App.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/src/Components/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/src/Components/Title.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/src/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/src/Main.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/src/Render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/src/Render.tsx -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/src/TSConfigExtends.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/src/TSConfigExtends.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/tsconfig.random.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.ssr.json" 3 | } 4 | -------------------------------------------------------------------------------- /Testing/Tests/TSConfigExtends/tsconfig.ssr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSConfigExtends/tsconfig.ssr.json -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/package.json -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/Module/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/Module/HelloWorld/index.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/Module/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/Module/Random/index.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/TSExtPaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/TSExtPaths.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/Utils/random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/Utils/random.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/src/Utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/src/Utils/random.ts -------------------------------------------------------------------------------- /Testing/Tests/TSExtPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSExtPaths/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/package.json -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Module/HelloWorld/HelloWorld.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Module/HelloWorld/HelloWorld.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Module/HelloWorld/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Module/HelloWorld/index.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Module/Random/Random.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Module/Random/Random.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Module/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Module/Random/index.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/TSNonExtPaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/TSNonExtPaths.test.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Utils/Math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Utils/Math.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/src/Utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/src/Utils/random.ts -------------------------------------------------------------------------------- /Testing/Tests/TSNonExtPaths/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/TSNonExtPaths/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/Template/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Template/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Template/package.json -------------------------------------------------------------------------------- /Testing/Tests/Template/src/TemplateSuite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Template/src/TemplateSuite.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Template/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/Winston/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Winston/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/Winston/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Winston/package.json -------------------------------------------------------------------------------- /Testing/Tests/Winston/src/WinstonSuite.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Winston/src/WinstonSuite.test.ts -------------------------------------------------------------------------------- /Testing/Tests/Winston/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/Winston/tsconfig.json -------------------------------------------------------------------------------- /Testing/Tests/folderImport/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/package-lock.json -------------------------------------------------------------------------------- /Testing/Tests/folderImport/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/package.json -------------------------------------------------------------------------------- /Testing/Tests/folderImport/src/FolderImport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/src/FolderImport.test.ts -------------------------------------------------------------------------------- /Testing/Tests/folderImport/src/Modules/Hello/Hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/src/Modules/Hello/Hello.test.ts -------------------------------------------------------------------------------- /Testing/Tests/folderImport/src/Modules/Hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/src/Modules/Hello/index.ts -------------------------------------------------------------------------------- /Testing/Tests/folderImport/src/Modules/Random/Random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/src/Modules/Random/Random.ts -------------------------------------------------------------------------------- /Testing/Tests/folderImport/src/Modules/Random/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/src/Modules/Random/index.ts -------------------------------------------------------------------------------- /Testing/Tests/folderImport/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/Testing/Tests/folderImport/tsconfig.json -------------------------------------------------------------------------------- /bin/Utils/Logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/bin/Utils/Logging/index.ts -------------------------------------------------------------------------------- /bin/Utils/buildPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/bin/Utils/buildPath.ts -------------------------------------------------------------------------------- /bin/Utils/tsSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/bin/Utils/tsSystem.ts -------------------------------------------------------------------------------- /bin/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/bin/build.ts -------------------------------------------------------------------------------- /bin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/bin/tsconfig.json -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/package.json -------------------------------------------------------------------------------- /src/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/Utils.ts -------------------------------------------------------------------------------- /src/findFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/findFiles.test.ts -------------------------------------------------------------------------------- /src/findFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/findFiles.ts -------------------------------------------------------------------------------- /src/fixtures/JS_Files/randomFile1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/fixtures/JS_Files/randomFile1.js -------------------------------------------------------------------------------- /src/fixtures/JS_Files/randomFile1Ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/fixtures/JS_Files/randomFile1Ext.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K-FOSS/TS-ESNode/HEAD/tsconfig.json --------------------------------------------------------------------------------