├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── docs.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .prettierrc ├── .releaserc.json ├── LICENSE ├── README.md ├── jest.config.ts ├── lib ├── const.ts ├── features │ ├── default-tags.ts │ ├── feature.ts │ ├── fix-tags.ts │ ├── index.ts │ ├── interpolater.ts │ ├── load-headers │ │ ├── impl.ts │ │ ├── index.ts │ │ └── loaders.ts │ ├── proxy-script.ts │ ├── render-headers.ts │ ├── resolve-base-urls.ts │ ├── ssri.ts │ └── validate-headers │ │ ├── headers.ts │ │ ├── impl.ts │ │ ├── index.ts │ │ └── utils.ts ├── fs.ts ├── index.ts ├── plugin.ts ├── types.ts └── utils.ts ├── package.json ├── test ├── integration │ ├── default-tags │ │ ├── fixtures.ts │ │ └── index.test.ts │ ├── fix-tags │ │ ├── fixtures.ts │ │ ├── headers.txt │ │ └── index.test.ts │ ├── fixtures.ts │ ├── fixtures │ │ ├── entry.js.txt │ │ ├── entry.min.js.txt │ │ ├── headers.txt │ │ └── package.json.txt │ ├── general │ │ ├── fixtures.ts │ │ └── index.test.ts │ ├── headers │ │ ├── fixtures.ts │ │ ├── index.test.ts │ │ ├── pretty-headers.txt │ │ └── tag-order-headers.txt │ ├── i18n │ │ ├── fixtures.ts │ │ ├── i18n.headers.txt │ │ ├── index.test.ts │ │ └── non-strict-i18n.headers.txt │ ├── interpolater │ │ ├── fixtures.ts │ │ └── index.test.ts │ ├── load-headers │ │ ├── fixtures.ts │ │ ├── index.test.ts │ │ └── load-headers.headers.txt │ ├── multi-entry │ │ ├── entry1.headers.txt │ │ ├── entry2.headers.txt │ │ ├── entry3.headers.txt │ │ ├── fixtures.ts │ │ └── index.test.ts │ ├── package-json │ │ ├── bugs.headers.txt │ │ ├── fixtures.ts │ │ ├── index.test.ts │ │ └── root-option.headers.txt │ ├── proxy-script │ │ ├── base-url-proxy-script.headers.txt │ │ ├── base-url-proxy-script.proxy-headers.txt │ │ ├── fixtures.ts │ │ ├── index.test.ts │ │ ├── proxy-script.headers.txt │ │ └── proxy-script.proxy-headers.txt │ ├── resolve-base-urls │ │ ├── fixtures.ts │ │ └── index.test.ts │ ├── ssri │ │ ├── algorithms-ssri-headers.txt │ │ ├── algorithms-ssri-lock.json.txt │ │ ├── filters-ssri-headers.txt │ │ ├── filters-ssri-lock.json.txt │ │ ├── fixtures.ts │ │ ├── index.test.ts │ │ ├── multi-algo-ssri-lock.json.txt │ │ ├── ssri-headers.txt │ │ ├── ssri-lock.json.txt │ │ ├── static │ │ │ ├── .eslintignore │ │ │ ├── jquery-3.4.1.min.js │ │ │ └── travis-webpack-userscript.svg │ │ └── unsupported-protocols.headers.txt │ ├── util.ts │ └── volume.ts └── setup.ts ├── tsconfig.build.json ├── tsconfig.json └── typedoc.json /.eslintignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "**/*.ts": ["prettier --write", "eslint --fix"] 3 | } 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/.releaserc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lib/const.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_LOCALE_KEY = ''; 2 | -------------------------------------------------------------------------------- /lib/features/default-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/default-tags.ts -------------------------------------------------------------------------------- /lib/features/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/feature.ts -------------------------------------------------------------------------------- /lib/features/fix-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/fix-tags.ts -------------------------------------------------------------------------------- /lib/features/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/index.ts -------------------------------------------------------------------------------- /lib/features/interpolater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/interpolater.ts -------------------------------------------------------------------------------- /lib/features/load-headers/impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/load-headers/impl.ts -------------------------------------------------------------------------------- /lib/features/load-headers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/load-headers/index.ts -------------------------------------------------------------------------------- /lib/features/load-headers/loaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/load-headers/loaders.ts -------------------------------------------------------------------------------- /lib/features/proxy-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/proxy-script.ts -------------------------------------------------------------------------------- /lib/features/render-headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/render-headers.ts -------------------------------------------------------------------------------- /lib/features/resolve-base-urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/resolve-base-urls.ts -------------------------------------------------------------------------------- /lib/features/ssri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/ssri.ts -------------------------------------------------------------------------------- /lib/features/validate-headers/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/validate-headers/headers.ts -------------------------------------------------------------------------------- /lib/features/validate-headers/impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/validate-headers/impl.ts -------------------------------------------------------------------------------- /lib/features/validate-headers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/validate-headers/index.ts -------------------------------------------------------------------------------- /lib/features/validate-headers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/features/validate-headers/utils.ts -------------------------------------------------------------------------------- /lib/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/fs.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/plugin.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/package.json -------------------------------------------------------------------------------- /test/integration/default-tags/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/default-tags/fixtures.ts -------------------------------------------------------------------------------- /test/integration/default-tags/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/default-tags/index.test.ts -------------------------------------------------------------------------------- /test/integration/fix-tags/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fix-tags/fixtures.ts -------------------------------------------------------------------------------- /test/integration/fix-tags/headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fix-tags/headers.txt -------------------------------------------------------------------------------- /test/integration/fix-tags/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fix-tags/index.test.ts -------------------------------------------------------------------------------- /test/integration/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fixtures.ts -------------------------------------------------------------------------------- /test/integration/fixtures/entry.js.txt: -------------------------------------------------------------------------------- 1 | (function () { 2 | console.log('hello'); 3 | })(); 4 | -------------------------------------------------------------------------------- /test/integration/fixtures/entry.min.js.txt: -------------------------------------------------------------------------------- 1 | console.log("hello"); -------------------------------------------------------------------------------- /test/integration/fixtures/headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fixtures/headers.txt -------------------------------------------------------------------------------- /test/integration/fixtures/package.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/fixtures/package.json.txt -------------------------------------------------------------------------------- /test/integration/general/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/general/fixtures.ts -------------------------------------------------------------------------------- /test/integration/general/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/general/index.test.ts -------------------------------------------------------------------------------- /test/integration/headers/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/headers/fixtures.ts -------------------------------------------------------------------------------- /test/integration/headers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/headers/index.test.ts -------------------------------------------------------------------------------- /test/integration/headers/pretty-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/headers/pretty-headers.txt -------------------------------------------------------------------------------- /test/integration/headers/tag-order-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/headers/tag-order-headers.txt -------------------------------------------------------------------------------- /test/integration/i18n/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/i18n/fixtures.ts -------------------------------------------------------------------------------- /test/integration/i18n/i18n.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/i18n/i18n.headers.txt -------------------------------------------------------------------------------- /test/integration/i18n/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/i18n/index.test.ts -------------------------------------------------------------------------------- /test/integration/i18n/non-strict-i18n.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/i18n/non-strict-i18n.headers.txt -------------------------------------------------------------------------------- /test/integration/interpolater/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/interpolater/fixtures.ts -------------------------------------------------------------------------------- /test/integration/interpolater/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/interpolater/index.test.ts -------------------------------------------------------------------------------- /test/integration/load-headers/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/load-headers/fixtures.ts -------------------------------------------------------------------------------- /test/integration/load-headers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/load-headers/index.test.ts -------------------------------------------------------------------------------- /test/integration/load-headers/load-headers.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/load-headers/load-headers.headers.txt -------------------------------------------------------------------------------- /test/integration/multi-entry/entry1.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/multi-entry/entry1.headers.txt -------------------------------------------------------------------------------- /test/integration/multi-entry/entry2.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/multi-entry/entry2.headers.txt -------------------------------------------------------------------------------- /test/integration/multi-entry/entry3.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/multi-entry/entry3.headers.txt -------------------------------------------------------------------------------- /test/integration/multi-entry/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/multi-entry/fixtures.ts -------------------------------------------------------------------------------- /test/integration/multi-entry/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/multi-entry/index.test.ts -------------------------------------------------------------------------------- /test/integration/package-json/bugs.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/package-json/bugs.headers.txt -------------------------------------------------------------------------------- /test/integration/package-json/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/package-json/fixtures.ts -------------------------------------------------------------------------------- /test/integration/package-json/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/package-json/index.test.ts -------------------------------------------------------------------------------- /test/integration/package-json/root-option.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/package-json/root-option.headers.txt -------------------------------------------------------------------------------- /test/integration/proxy-script/base-url-proxy-script.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/base-url-proxy-script.headers.txt -------------------------------------------------------------------------------- /test/integration/proxy-script/base-url-proxy-script.proxy-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/base-url-proxy-script.proxy-headers.txt -------------------------------------------------------------------------------- /test/integration/proxy-script/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/fixtures.ts -------------------------------------------------------------------------------- /test/integration/proxy-script/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/index.test.ts -------------------------------------------------------------------------------- /test/integration/proxy-script/proxy-script.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/proxy-script.headers.txt -------------------------------------------------------------------------------- /test/integration/proxy-script/proxy-script.proxy-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/proxy-script/proxy-script.proxy-headers.txt -------------------------------------------------------------------------------- /test/integration/resolve-base-urls/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/resolve-base-urls/fixtures.ts -------------------------------------------------------------------------------- /test/integration/resolve-base-urls/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/resolve-base-urls/index.test.ts -------------------------------------------------------------------------------- /test/integration/ssri/algorithms-ssri-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/algorithms-ssri-headers.txt -------------------------------------------------------------------------------- /test/integration/ssri/algorithms-ssri-lock.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/algorithms-ssri-lock.json.txt -------------------------------------------------------------------------------- /test/integration/ssri/filters-ssri-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/filters-ssri-headers.txt -------------------------------------------------------------------------------- /test/integration/ssri/filters-ssri-lock.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/filters-ssri-lock.json.txt -------------------------------------------------------------------------------- /test/integration/ssri/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/fixtures.ts -------------------------------------------------------------------------------- /test/integration/ssri/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/index.test.ts -------------------------------------------------------------------------------- /test/integration/ssri/multi-algo-ssri-lock.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/multi-algo-ssri-lock.json.txt -------------------------------------------------------------------------------- /test/integration/ssri/ssri-headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/ssri-headers.txt -------------------------------------------------------------------------------- /test/integration/ssri/ssri-lock.json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/ssri-lock.json.txt -------------------------------------------------------------------------------- /test/integration/ssri/static/.eslintignore: -------------------------------------------------------------------------------- 1 | ./**/* -------------------------------------------------------------------------------- /test/integration/ssri/static/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/static/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /test/integration/ssri/static/travis-webpack-userscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/static/travis-webpack-userscript.svg -------------------------------------------------------------------------------- /test/integration/ssri/unsupported-protocols.headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/ssri/unsupported-protocols.headers.txt -------------------------------------------------------------------------------- /test/integration/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/util.ts -------------------------------------------------------------------------------- /test/integration/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/test/integration/volume.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- 1 | import 'jest-extended'; 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momocow/webpack-userscript/HEAD/typedoc.json --------------------------------------------------------------------------------