Files
EightBittr/tsconfig.base.json
Josh Goldberg 5ae2f59099 feat: revamped WorldSeedr (#341)
## Overview

Drastically simplifies the WorldSeedr package by reducing the different
kinds of variance allowed. Adds unit tests too.

Creates a second example, InfiniteContributionsCalendar, to demonstrate
WorldSeedr usage.

### PR Checklist

-   [x] Fixes #182
-   [x] I have run this code to verify it works
-   [x] This PR includes unit tests for the code change
2022-09-08 11:14:19 +10:00

25 lines
696 B
JSON

{
"compilerOptions": {
"baseUrl": "./packages",
"composite": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"module": "amd",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"target": "ES2021"
},
"exclude": ["**/*.d.ts"]
}