mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
38 lines
888 B
JSON
38 lines
888 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2020"],
|
|
"noEmit": true,
|
|
"target": "es2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"incremental": true,
|
|
"allowUnreachableCode": false,
|
|
"esModuleInterop": true
|
|
},
|
|
"types": ["node"],
|
|
"exclude": [
|
|
"./.*-dist/**/*",
|
|
],
|
|
"include": [
|
|
"./config/*.ts",
|
|
"./data/*",
|
|
"./data/text/*",
|
|
"./data/mods/*/*",
|
|
"./dev-tools/*.ts",
|
|
"./lib/*.ts",
|
|
"./server/**/*.ts",
|
|
"./sim/**/*",
|
|
"./tools/set-import/*.ts",
|
|
"./tools/modlog/*.ts",
|
|
"./translations/**/*.ts",
|
|
],
|
|
"ts-node": {
|
|
"files": true,
|
|
"transpileOnly": true,
|
|
"transpiler": "ts-node/transpilers/swc-experimental",
|
|
}
|
|
}
|