pokemon-showdown/tsconfig.json

25 lines
557 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",
"./crashlogger.js",
"./dnsbl.js",
"./monitor.js",
"./repl.js",
"./fs.js",
"./process-manager.js",
"./verifier.js"
]
}