konowebcodecs/tsconfig.eslint.json
2022-09-13 17:23:21 +08:00

15 lines
308 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",
"test",
"tools"
]
}