mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2025-12-06 02:30:47 -08:00
22 lines
504 B
JSON
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"]
|
|
}
|