pokemon-showdown-client/tsconfig.json
Guangcong Luo 51657d5008 Increase TypeScript strictness
(Now with `noImplicitOverride`)
2025-02-19 00:47:33 -08:00

21 lines
579 B
JSON

{
"compilerOptions": {
"lib": ["dom", "es6", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "None",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"strict": true,
"noImplicitOverride": true
},
"types": [],
"include": [
"./play.pokemonshowdown.com/js/lib/preact.d.ts",
"./play.pokemonshowdown.com/src/*"
]
}