2023-02-09 07:19:11 +03:00
|
|
|
{
|
2023-02-18 05:08:52 +03:00
|
|
|
"extends": "../../tsconfig.json",
|
2023-05-31 15:49:56 +03:00
|
|
|
"include": [
|
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx",
|
|
|
|
"./src/**/*.json",
|
|
|
|
"../workspace/src",
|
|
|
|
"../../apps/electron/layers/**/src"
|
|
|
|
],
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"noEmit": false,
|
|
|
|
"outDir": "lib"
|
|
|
|
},
|
|
|
|
"exclude": ["lib"],
|
2023-03-28 09:07:53 +03:00
|
|
|
"references": [
|
2023-05-31 15:49:56 +03:00
|
|
|
{
|
|
|
|
"path": "../debug"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../i18n"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../jotai"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "../hooks"
|
|
|
|
},
|
2023-03-28 09:07:53 +03:00
|
|
|
{
|
|
|
|
"path": "./tsconfig.node.json"
|
2023-05-31 15:49:56 +03:00
|
|
|
},
|
|
|
|
{ "path": "../../tests/fixtures" }
|
2023-03-28 09:07:53 +03:00
|
|
|
]
|
2023-02-09 07:19:11 +03:00
|
|
|
}
|