๐Ÿ“ฆ payloadcms / payload

๐Ÿ“„ tsconfig.eslint.json ยท 14 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14{
  // extend your base config to share compilerOptions, etc
  //"extends": "./tsconfig.json",
  "compilerOptions": {
    // ensure that nobody can accidentally use this config for a build
    "noEmit": true
  },
  "include": [
    // whatever paths you intend to lint
    "./**/*.ts",
    "./**/*.tsx"
  ]
}