Files
Bubberstation/tgui/tsconfig.json
SkyratBot 28a2628a13 Enable strictNullChecks on tgui (#60961) (#7714)
* Enable strictNullChecks

* ArgumentType -> ArgumentsOf

* Fix map signature

Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
2021-08-23 16:11:30 +01:00

25 lines
561 B
JSON

{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ESNext", "ScriptHost"],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": false,
"strictNullChecks": true,
"target": "ES3"
},
"include": [
"./*.d.ts",
"./packages"
]
}