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