Pokemon_server / sim /tsconfig.json
Jofthomas's picture
Jofthomas HF staff
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
405 Bytes
{
"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",
]
}