21 lines
539 B
JSON
21 lines
539 B
JSON
{
|
|
"extends": "./generic-tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"types": []
|
|
},
|
|
"include": [
|
|
"src/features/**/client/**/*",
|
|
"src/features/**/shared/**/*",
|
|
"src/features/client-utils/**/*",
|
|
"src/shared/**/*",
|
|
"src/client/**/*",
|
|
// Not really clean, but we need these to access the type of the functions
|
|
// for comlink
|
|
"src/features/**/worker/**/*",
|
|
"src/features-worker/**/*",
|
|
"src/features/worker-utils/**/*",
|
|
"src/worker-shared/**/*"
|
|
]
|
|
}
|