mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
This adds some new `data/text/` files, which are the new home for item/move/ability descriptions, as well as in-game messages, in one place for ease of translation.
28 lines
619 B
JSON
28 lines
619 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/text/*",
|
|
"./data/mods/*/*",
|
|
"./dev-tools/*.ts",
|
|
"./lib/*",
|
|
"./server/**/*.ts",
|
|
"./sim/**/*",
|
|
"./tools/set-import/*.ts"
|
|
]
|
|
}
|