mirror of
https://github.com/bitgapp/eqMac.git
synced 2024-11-25 10:03:01 +03:00
17 lines
348 B
JSON
17 lines
348 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",
|
||
|
"scripts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|