zola-check-manager

A Github Action allowing you to manage the zola check results in github
git clone git://archive.git.mtrnord.blog/MTRNord/zola-check-manager.git
Log | Files | Refs | README | LICENSE

tsconfig.json (999B)


      1 {
      2   "compilerOptions": {
      3     "target": "ES2021", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
      4     "module": "Node16", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
      5     "moduleResolution": "Node16",
      6     "outDir": "./lib", /* Redirect output structure to the directory. */
      7     "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
      8     "strict": true, /* Enable all strict type-checking options. */
      9     "strictNullChecks": true,
     10     "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
     11     "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
     12   },
     13   "exclude": [
     14     "node_modules",
     15     "**/*.test.ts"
     16   ]
     17 }