TidGi-Desktop/tsconfig.eslint.json
2020-12-19 22:33:59 +08:00

22 lines
504 B
JSON

{
// 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
"src/**/*.ts",
"src/**/*.js",
"src/**/*.tsx",
"src/**/*.jsx",
"public/**/*.ts",
"public/**/*.js",
"src/**/*.d.ts",
"public/**/*.d.ts",
"./*.json",
"./*.js"
],
"exclude": ["template/**/*.js"]
}