pokemon-showdown-loginserver/tsconfig.json
Mia 1cec1eaa36
Some checks failed
Node.js CI / build (18.x) (push) Has been cancelled
Node.js CI / build (20.x) (push) Has been cancelled
Fix linter & sync code from box
2025-04-12 23:21:54 -05:00

23 lines
480 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/config*.js",
],
"exclude": ["./.dist/**/*", "./scripts/**/*"],
}