2019-12-04 23:06:22 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2024-10-05 21:22:44 +02:00
|
|
|
"target": "es2017",
|
2020-11-05 18:58:23 +02:00
|
|
|
//"lib": ["es2015", "es2020.string", "dom", "dom.iterable"],
|
2019-12-04 23:06:22 +02:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-03-23 02:47:25 +02:00
|
|
|
"listEmittedFiles": false,
|
2019-12-04 23:06:22 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
2020-06-10 23:08:59 +02:00
|
|
|
"skipLibCheck": true,
|
2020-10-09 19:35:46 +02:00
|
|
|
"allowUmdGlobalAccess": true,
|
2019-12-04 23:06:22 +02:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules",
|
2020-11-05 18:58:23 +02:00
|
|
|
"packages/app-desktop/dist/**/*",
|
|
|
|
"packages/app-cli/tests/support/**/*",
|
|
|
|
"packages/app-cli/tests-build/**/*",
|
|
|
|
"packages/app-cli/build/**/*",
|
|
|
|
"Modules/**/*",
|
2020-12-28 13:48:47 +02:00
|
|
|
"packages/server/dist",
|
2019-12-04 23:06:22 +02:00
|
|
|
],
|
2024-03-26 13:35:30 +02:00
|
|
|
|
|
|
|
"ts-node": {
|
|
|
|
"preferTsExts": true
|
|
|
|
}
|
2019-12-04 23:06:22 +02:00
|
|
|
}
|