mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-26 02:39:38 -05:00
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.
27 lines
591 B
JSON
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"
|
|
]
|
|
}
|