pokemon-showdown/tsconfig.json
Guangcong Luo cd5c7991b7 Only check .ts files in server/
Mostly, this prevents TypeScript from complaining about .js
files in config/chat-plugins/private/
2020-06-10 11:23:20 -04:00

27 lines
594 B
JSON

{
"compilerOptions": {
"lib": ["es2015", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"checkJs": true
},
"types": ["node"],
"exclude": [
"./.*-dist/**/*",
],
"include": [
"./config/*.ts",
"./data/*",
"./data/mods/*/*",
"./dev-tools/*.ts",
"./lib/*",
"./server/**/*.ts",
"./sim/**/*",
"./tools/set-import/*.ts"
]
}