├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── tests ├── package-a │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module-a.ts │ └── tsconfig.json ├── package-b │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module-b.ts │ └── tsconfig.json ├── package-c │ ├── index.ts │ ├── module-c.ts │ ├── package.json │ └── tsconfig.prod.json ├── package-d │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── package-e │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module-e.ts │ └── tsconfig.json ├── package-f │ ├── package.json │ ├── src │ │ ├── index.ts │ │ └── module-f.ts │ └── tsconfig.json ├── package-g │ ├── package.json │ └── sources │ │ ├── src │ │ ├── index.ts │ │ └── module-g.ts │ │ └── tsconfig.json └── test-webpack-alias │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ ├── webpack.config.js │ └── webpack.config.prod.js ├── webpack-project-references-alias ├── .npmignore ├── README.md ├── package.json ├── src │ ├── functional.ts │ └── index.ts └── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | webpack-project-references-alias/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/package.json -------------------------------------------------------------------------------- /tests/package-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-a/package.json -------------------------------------------------------------------------------- /tests/package-a/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-a/src/index.ts -------------------------------------------------------------------------------- /tests/package-a/src/module-a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-a/src/module-a.ts -------------------------------------------------------------------------------- /tests/package-a/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-a/tsconfig.json -------------------------------------------------------------------------------- /tests/package-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-b/package.json -------------------------------------------------------------------------------- /tests/package-b/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-b/src/index.ts -------------------------------------------------------------------------------- /tests/package-b/src/module-b.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-b/src/module-b.ts -------------------------------------------------------------------------------- /tests/package-b/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-b/tsconfig.json -------------------------------------------------------------------------------- /tests/package-c/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-c/index.ts -------------------------------------------------------------------------------- /tests/package-c/module-c.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-c/module-c.ts -------------------------------------------------------------------------------- /tests/package-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-c/package.json -------------------------------------------------------------------------------- /tests/package-c/tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-c/tsconfig.prod.json -------------------------------------------------------------------------------- /tests/package-d/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-d/package.json -------------------------------------------------------------------------------- /tests/package-d/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-d/src/index.ts -------------------------------------------------------------------------------- /tests/package-d/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-d/tsconfig.json -------------------------------------------------------------------------------- /tests/package-e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-e/package.json -------------------------------------------------------------------------------- /tests/package-e/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-e/src/index.ts -------------------------------------------------------------------------------- /tests/package-e/src/module-e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-e/src/module-e.ts -------------------------------------------------------------------------------- /tests/package-e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-e/tsconfig.json -------------------------------------------------------------------------------- /tests/package-f/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-f/package.json -------------------------------------------------------------------------------- /tests/package-f/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-f/src/index.ts -------------------------------------------------------------------------------- /tests/package-f/src/module-f.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-f/src/module-f.ts -------------------------------------------------------------------------------- /tests/package-f/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-f/tsconfig.json -------------------------------------------------------------------------------- /tests/package-g/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-g/package.json -------------------------------------------------------------------------------- /tests/package-g/sources/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-g/sources/src/index.ts -------------------------------------------------------------------------------- /tests/package-g/sources/src/module-g.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-g/sources/src/module-g.ts -------------------------------------------------------------------------------- /tests/package-g/sources/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/package-g/sources/tsconfig.json -------------------------------------------------------------------------------- /tests/test-webpack-alias/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/test-webpack-alias/package.json -------------------------------------------------------------------------------- /tests/test-webpack-alias/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/test-webpack-alias/src/index.ts -------------------------------------------------------------------------------- /tests/test-webpack-alias/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/test-webpack-alias/tsconfig.json -------------------------------------------------------------------------------- /tests/test-webpack-alias/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/test-webpack-alias/webpack.config.js -------------------------------------------------------------------------------- /tests/test-webpack-alias/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/tests/test-webpack-alias/webpack.config.prod.js -------------------------------------------------------------------------------- /webpack-project-references-alias/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !lib/* 3 | !package.json 4 | -------------------------------------------------------------------------------- /webpack-project-references-alias/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/webpack-project-references-alias/README.md -------------------------------------------------------------------------------- /webpack-project-references-alias/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/webpack-project-references-alias/package.json -------------------------------------------------------------------------------- /webpack-project-references-alias/src/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/webpack-project-references-alias/src/functional.ts -------------------------------------------------------------------------------- /webpack-project-references-alias/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/webpack-project-references-alias/src/index.ts -------------------------------------------------------------------------------- /webpack-project-references-alias/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/webpack-project-references-alias/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/webpack-project-references-alias/HEAD/yarn.lock --------------------------------------------------------------------------------