2020-11-05 18:58:23 +02:00
|
|
|
{
|
2022-07-22 11:44:19 +02:00
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"include": [
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
2020-11-05 18:58:23 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
2022-08-25 17:59:38 +02:00
|
|
|
//Files that don't need transpilation
|
2020-11-05 18:58:23 +02:00
|
|
|
"**/node_modules",
|
2022-07-22 11:44:19 +02:00
|
|
|
"**/*.test.ts",
|
|
|
|
"**/*.test.tsx",
|
2022-08-25 17:59:38 +02:00
|
|
|
"gulpfile.ts",
|
|
|
|
"tools/*.ts",
|
2020-11-05 18:58:23 +02:00
|
|
|
],
|
2022-08-25 17:59:38 +02:00
|
|
|
"compilerOptions": {
|
2023-05-27 17:30:25 +02:00
|
|
|
"types": ["jest", "node"],
|
|
|
|
"moduleSuffixes": [".ios", ".android", ".native", ""]
|
2022-08-25 17:59:38 +02:00
|
|
|
}
|
2022-07-22 11:44:19 +02:00
|
|
|
}
|