generated from react18-tools/turborepo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
46 lines (43 loc) · 928 Bytes
/
server.js
File metadata and controls
46 lines (43 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const { resolve } = require("node:path");
const project = resolve(process.cwd(), "tsconfig.json");
/*
* This is a custom ESLint configuration for use server side
* typescript packages.
*
* This config extends the Vercel Engineering Style Guide.
* For more information, see https://github.com/vercel/style-guide
*
*/
module.exports = {
extends: ["@vercel/style-guide/eslint/node", "@vercel/style-guide/eslint/typescript"].map(
require.resolve,
),
parserOptions: {
project,
},
env: {
node: true,
es6: true,
},
plugins: ["only-warn"],
settings: {
"import/resolver": {
typescript: {
project,
},
},
},
overrides: [
{
files: ["**/__tests__/**/*"],
env: {
jest: true,
},
},
],
ignorePatterns: [".*.js", "node_modules/", "dist/"],
// add rules configurations here
rules: {
"import/no-default-export": "off",
},
};