mirror of
https://github.com/smogon/pokemon-showdown-loginserver.git
synced 2026-03-21 17:34:38 -05:00
23 lines
474 B
JSON
23 lines
474 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2020"],
|
|
"target": "esnext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"checkJs": true,
|
|
"outDir": "./.dist",
|
|
"incremental": true,
|
|
"allowUnreachableCode": false,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"types": ["node"],
|
|
"include": [
|
|
"./src/**/*",
|
|
"./config/**/*",
|
|
],
|
|
"exclude": ["./.dist/**/*", "./scripts/**/*"],
|
|
}
|