2019-10-25 19:51:40 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": true,
|
2020-04-04 08:17:07 -04:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
|
|
|
"baseUrl": "..",
|
|
|
|
"paths": {
|
|
|
|
"tc-shared/*": ["imports/shared-app/*"],
|
2021-02-07 12:30:29 -05:00
|
|
|
"tc-loader": ["imports/loader"],
|
|
|
|
"svg-sprites/*": ["imports/svg-sprites/*"]
|
2020-04-04 08:17:07 -04:00
|
|
|
}
|
2019-10-25 19:51:40 -04:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./renderer",
|
|
|
|
"./crash_handler",
|
|
|
|
"./shared/*.ts",
|
|
|
|
"../native/*/exports/"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./renderer/imports/.copy_*.d.ts"
|
|
|
|
]
|
|
|
|
}
|