discord.js/apps/website/tsconfig.eslint.json

27 lines
405 B
JSON
Raw Permalink Normal View History

2022-06-09 05:13:31 +12:00
{
2023-11-09 12:13:01 +13:00
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": true
},
2023-11-09 12:13:01 +13:00
"include": [
"*.ts",
"*.tsx",
"*.js",
2024-02-29 16:37:52 +13:00
"*.jsx",
2023-11-09 12:13:01 +13:00
"*.cjs",
"*.mjs",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"src/**/*.cjs",
"src/**/*.mjs",
"bin",
"scripts",
"__tests__",
"__mocks__"
],
"exclude": ["node_modules"]
2022-06-09 05:13:31 +12:00
}