pokemon-showdown/tsconfig.json
Guangcong Luo 377969aab2 Simplify tsconfig
A lot of this complexity was because we were once half-migrated, but
now we're basically fully migrated to TypeScript so there's no more
need.
2020-06-09 13:55:53 -07:00

27 lines
591 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"],
"exclude": [
"./.*-dist/**/*",
],
"include": [
"./config/*.ts",
"./data/*",
"./data/mods/*/*",
"./dev-tools/*.ts",
"./lib/*",
"./server/**/*",
"./sim/**/*",
"./tools/set-import/*.ts"
]
}