2019-06-23 03:35:23 -07:00
|
|
|
{
|
2023-08-01 08:32:43 -07:00
|
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
2019-06-23 03:35:23 -07:00
|
|
|
"compilerOptions": {
|
2022-10-26 02:55:39 -07:00
|
|
|
"lib": ["dom", "es2020", "es2022.error"],
|
2023-05-02 08:29:07 -07:00
|
|
|
"paths": {
|
2023-06-22 07:47:28 -07:00
|
|
|
"@test/*": ["./test/*"],
|
|
|
|
"@utils/*": ["./utils/*"]
|
2023-05-02 08:29:07 -07:00
|
|
|
},
|
2023-09-29 04:26:06 -07:00
|
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
2022-09-09 09:00:18 -07:00
|
|
|
// TODO: remove all options below this line
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
"useUnknownInCatchVariables": false
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2023-05-02 01:37:19 -07:00
|
|
|
"include": ["credentials/**/*.ts", "nodes/**/*.ts", "test/**/*.ts", "utils/**/*.ts"],
|
2023-03-08 05:33:13 -08:00
|
|
|
"references": [
|
|
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
|
|
{ "path": "../core/tsconfig.build.json" }
|
2023-06-22 07:47:28 -07:00
|
|
|
],
|
|
|
|
"tsc-alias": {
|
|
|
|
"replacers": {
|
|
|
|
"base-url": {
|
|
|
|
"enabled": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|