mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-08-19 01:01:30 -05:00
21 lines
461 B
JSON
21 lines
461 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["es2020"],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"checkJs": true,
|
|
"rewriteRelativeImportExtensions": true,
|
|
"erasableSyntaxOnly": true,
|
|
"allowUnreachableCode": false,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"types": ["node"],
|
|
"include": [
|
|
"./src/**/*",
|
|
"./config/config*.cjs",
|
|
],
|
|
"exclude": ["./scripts/**/*"],
|
|
}
|