pokemon-showdown/tsconfig.json
Guangcong Luo e34c77930a Start creating classes for getEffect data
Currently, getEffect/getTemplate/getMove/etc return bare objects.
Refactoring their returns into classes will allow TypeScript to type
check them.
2017-05-09 16:00:11 -05:00

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"
]
}