mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-08 10:06:26 -05:00
22 lines
405 B
JSON
22 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2020"],
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "../dist",
|
|
"declaration": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"incremental": true,
|
|
"allowUnreachableCode": false
|
|
},
|
|
"types": ["node"],
|
|
"include": [
|
|
"./global-types.ts",
|
|
"./index.ts",
|
|
]
|
|
}
|