mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
90dd3821ed
* feat(ci): run pull request runs only on pull request open #4205 * feat(ci): add retry action for tsan #4205 * feat(ci): use local action for retrying tsan #4205 * fix(ci): use correct version of retry action #4205 * fix: make POSIX event thread safe * feat(ci): add info on retry action to ci.yml header #4205 * feat(ci): add linux mysql test #4205 * feat(ci): remove unused mysql containers from tests#4205 * feat(ci): add linux postgre test #4205 * feat(ci): add linux redis test #4205 * feat(ci): add linux mongodb tests #4205 * feat(ci): add mysql odbc test #4205 * chore(ci): rename tests #4205 * chore(ci): pin postgres and mysql versions #4205 * feat(ci): add odbc postgres tests #4205 * chore(ci): mysql odbc comment #4205 * chore(ci): disable windows 2019 job #4205 * feat(ci): add linux oracle tests #4205 * chore(ci): disable oracle tests #4205 * feat(ci): add sql server tests #4205 * chore(ci): disable postgres tests #4205 * chore(ci): add logging for task test #4205 * feat(ci): add local retry action #4205 * feat(ci): ignore process kill failure in action #4205 * feat(ci): send SIGKILL instead of SIGTERM in action #4205 * chore(ci): add updated action #4205 * chore(ci): reduce tsan timeout #4205 * feat(ci): kill process without children #4205 * feat(ci): send SIGTERM to child in action #4205 * feat(ci): prolong tsan timeout #4205 * chore(ci): add missing newlines #4205 * fix(ci): revert sql server test FreeTDS version #4205 * feat(ci): add retry to all jobs #4205 * feat(ci): setup python for codeQL #4205 * chore(ci): disable throwing on codeql error #4205
16 lines
854 B
JSON
16 lines
854 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Basic Options */
|
|
"target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */,
|
|
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
|
|
"noEmit": true /* Do not emit outputs. */,
|
|
|
|
/* Strict Type-Checking Options */
|
|
"strict": true /* Enable all strict type-checking options. */,
|
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
|
|
/* Advanced Options */
|
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
|
},
|
|
"exclude": ["**/__tests__", "**/__mocks__"]
|
|
} |