mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-17 22:20:55 -05:00
Currently, getEffect/getTemplate/getMove/etc return bare objects. Refactoring their returns into classes will allow TypeScript to type check them.
18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2015", "es2016.array.include", "es2017.object"],
|
|
"noEmit": true,
|
|
"target": "ESNext",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true
|
|
},
|
|
"types": ["node"],
|
|
"include": [
|
|
"./dev-tools/globals.ts",
|
|
"./sim/dex-data.js",
|
|
"./sim/dex.js",
|
|
"./sim/prng.js"
|
|
]
|
|
}
|