pokemon-showdown/tsconfig.json
2017-10-22 04:47:35 -05:00

29 lines
696 B
JSON

{
"compilerOptions": {
"lib": ["es2015", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"checkJs": true
},
"types": ["node"],
"include": [
"./dev-tools/global.d.ts",
"./dev-tools/node.d.ts",
"./dev-tools/globals.ts",
"./sim/*.js",
"./crashlogger.js",
"./dnsbl.js",
"./ladders-matchmaker.js",
"./monitor.js",
"./repl.js",
"./fs.js",
"./room-game.js",
"./process-manager.js",
"./verifier.js"
]
}