2019-12-11 05:01:14 -09:00
|
|
|
{
|
|
|
|
|
"extends": "../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
2024-08-24 16:41:58 -08:00
|
|
|
"declaration": true,
|
2019-12-11 05:01:14 -09:00
|
|
|
"declarationDir": "../dist/tmp/appdts/",
|
2022-01-08 01:27:12 -09:00
|
|
|
"outDir": "../target/",
|
2024-08-24 16:41:58 -08:00
|
|
|
"composite": true,
|
2022-01-08 01:27:12 -09:00
|
|
|
"noImplicitAny": false
|
2019-12-11 05:01:14 -09:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"./**/*",
|
2023-07-25 01:39:51 -08:00
|
|
|
"./package.json",
|
|
|
|
|
"../typings/extend-electron.d.ts",
|
|
|
|
|
"../typings/ext-modules.d.ts"
|
2024-08-24 16:41:58 -08:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"../dist/**/*",
|
|
|
|
|
"../target/**/*"
|
2019-12-11 05:01:14 -09:00
|
|
|
]
|
|
|
|
|
}
|