├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── eslint.config.js ├── next.js ├── package.json ├── rollup.config.ts ├── src ├── index.ts └── next.ts ├── test ├── __snapshots__ │ └── index.ts.snap ├── fixtures │ ├── complex.tsx │ ├── preact.tsx │ ├── simple.jsx │ └── simple.tsx ├── index.ts └── utils │ ├── compile.ts │ ├── get-module-source.ts │ ├── get-rspack-compiler.ts │ └── get-webpack-compiler.ts └── tsconfig.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/eslint.config.js -------------------------------------------------------------------------------- /next.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./dist/next'); 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/src/next.ts -------------------------------------------------------------------------------- /test/__snapshots__/index.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/__snapshots__/index.ts.snap -------------------------------------------------------------------------------- /test/fixtures/complex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/fixtures/complex.tsx -------------------------------------------------------------------------------- /test/fixtures/preact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/fixtures/preact.tsx -------------------------------------------------------------------------------- /test/fixtures/simple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/fixtures/simple.jsx -------------------------------------------------------------------------------- /test/fixtures/simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/fixtures/simple.tsx -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/utils/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/utils/compile.ts -------------------------------------------------------------------------------- /test/utils/get-module-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/utils/get-module-source.ts -------------------------------------------------------------------------------- /test/utils/get-rspack-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/utils/get-rspack-compiler.ts -------------------------------------------------------------------------------- /test/utils/get-webpack-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/test/utils/get-webpack-compiler.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SukkaW/forgetti-loader/HEAD/tsconfig.json --------------------------------------------------------------------------------