mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
32 lines
715 B
JSON
32 lines
715 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2019"],
|
|
"noEmit": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"incremental": true,
|
|
"allowUnreachableCode": false
|
|
},
|
|
"types": ["node"],
|
|
"exclude": [
|
|
"./.*-dist/**/*",
|
|
],
|
|
"include": [
|
|
"./config/*.ts",
|
|
"./data/*",
|
|
"./data/text/*",
|
|
"./data/mods/*/*",
|
|
"./dev-tools/*.ts",
|
|
"./lib/*.ts",
|
|
"./server/**/*.ts",
|
|
"./sim/**/*",
|
|
"./tools/set-import/*.ts",
|
|
"./tools/modlog/*.ts",
|
|
"./translations/**/*.ts",
|
|
]
|
|
}
|