advent-of-code

Entries to advent of code, multiple years
git clone git://git.finwo.net/misc/advent-of-code
Log | Files | Refs

tsconfig.json (707B)


      1 {
      2   "compilerOptions": {
      3     "module": "commonjs",
      4     "declaration": true,
      5     "removeComments": true,
      6     "emitDecoratorMetadata": true,
      7     "experimentalDecorators": true,
      8     "allowSyntheticDefaultImports": true,
      9     "target": "es2017",
     10     "sourceMap": true,
     11     "outDir": "./dist",
     12     "baseUrl": "./",
     13     "incremental": true,
     14     "skipLibCheck": true,
     15     "strictNullChecks": false,
     16     "noImplicitAny": false,
     17     "strictBindCallApply": false,
     18     "forceConsistentCasingInFileNames": false,
     19     "noFallthroughCasesInSwitch": false,
     20     "paths": {
     21       "@common": ["src/common"],
     22       "@common/*": ["src/common/*"],
     23       "@config": ["src/config"],
     24       "@config/*": ["src/config/*"]
     25     }
     26   }
     27 }