pokemon-showdown-loginserver/tsconfig.json
2023-01-03 19:30:37 -06:00

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/**/*"],
}