
Note that the filename of the .d.ts has to be different from any existing file! https://stackoverflow.com/questions/59728371/typescript-d-ts-file-not-recognized
9 lines
374 B
JSON
9 lines
374 B
JSON
{
|
|
"extends": "@/build-config/tsconfig-typecheck.json",
|
|
"compilerOptions": {
|
|
/* Also indicate expectation of a WebWorker runtime */
|
|
"lib": ["ESnext", "DOM", "DOM.Iterable", "WebWorker"]
|
|
},
|
|
/* Typecheck all files with the given extensions (here or in subfolders) */
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts", "global-electron.d.ts"]
|
|
}
|