├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .nvmrc ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── _private ├── common.json ├── executable.json └── module.json ├── agnostic-module.json ├── assets ├── noErrorTruncation.false.png └── noErrorTruncation.true.png ├── browser-executable.json ├── browser-module.json ├── commitlint.config.js ├── nodejs-executable.json ├── nodejs-module.json ├── package.json ├── readme.md ├── renovate.json ├── src ├── agnostic-module.test.ts ├── browser-executable.test.ts ├── browser-module.test.ts ├── integration-test-macro.ts ├── nodejs-executable.test.ts ├── nodejs-module.test.ts ├── shared.ts ├── unit-test-macro.ts └── webworker-module.test.ts ├── tsconfig.configs.json ├── tsconfig.json └── webworker-module.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | tsconfig.tsbuildinfo 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 15.4.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /_private/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/_private/common.json -------------------------------------------------------------------------------- /_private/executable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/_private/executable.json -------------------------------------------------------------------------------- /_private/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/_private/module.json -------------------------------------------------------------------------------- /agnostic-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/agnostic-module.json -------------------------------------------------------------------------------- /assets/noErrorTruncation.false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/assets/noErrorTruncation.false.png -------------------------------------------------------------------------------- /assets/noErrorTruncation.true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/assets/noErrorTruncation.true.png -------------------------------------------------------------------------------- /browser-executable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/browser-executable.json -------------------------------------------------------------------------------- /browser-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/browser-module.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /nodejs-executable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/nodejs-executable.json -------------------------------------------------------------------------------- /nodejs-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/nodejs-module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/renovate.json -------------------------------------------------------------------------------- /src/agnostic-module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/agnostic-module.test.ts -------------------------------------------------------------------------------- /src/browser-executable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/browser-executable.test.ts -------------------------------------------------------------------------------- /src/browser-module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/browser-module.test.ts -------------------------------------------------------------------------------- /src/integration-test-macro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/integration-test-macro.ts -------------------------------------------------------------------------------- /src/nodejs-executable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/nodejs-executable.test.ts -------------------------------------------------------------------------------- /src/nodejs-module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/nodejs-module.test.ts -------------------------------------------------------------------------------- /src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/shared.ts -------------------------------------------------------------------------------- /src/unit-test-macro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/unit-test-macro.ts -------------------------------------------------------------------------------- /src/webworker-module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/src/webworker-module.test.ts -------------------------------------------------------------------------------- /tsconfig.configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/tsconfig.configs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webworker-module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mightyiam/tsconfigs/HEAD/webworker-module.json --------------------------------------------------------------------------------