├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── progress.html ├── src ├── autoAdd.ts ├── errorCounter.ts ├── findCandidates.ts ├── findCycles.ts ├── getStrictNullCheckEligibleFiles.ts ├── runFindCycles.ts ├── tsHelper.ts └── visualize.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/package.json -------------------------------------------------------------------------------- /progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/progress.html -------------------------------------------------------------------------------- /src/autoAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/autoAdd.ts -------------------------------------------------------------------------------- /src/errorCounter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/errorCounter.ts -------------------------------------------------------------------------------- /src/findCandidates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/findCandidates.ts -------------------------------------------------------------------------------- /src/findCycles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/findCycles.ts -------------------------------------------------------------------------------- /src/getStrictNullCheckEligibleFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/getStrictNullCheckEligibleFiles.ts -------------------------------------------------------------------------------- /src/runFindCycles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/runFindCycles.ts -------------------------------------------------------------------------------- /src/tsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/tsHelper.ts -------------------------------------------------------------------------------- /src/visualize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/src/visualize.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/strict-null-check-migration-tools/HEAD/tsconfig.json --------------------------------------------------------------------------------