Skip to content
Snippets Groups Projects
tsconfig.json 443 B
Newer Older
  • Learn to ignore specific revisions
  • Alex ORLUC's avatar
    Alex ORLUC committed
    {
      "compileOnSave": false,
      "compilerOptions": {
        "baseUrl": "./",
    
        "downlevelIteration": true,
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        "outDir": "./dist/out-tsc",
        "sourceMap": true,
        "declaration": false,
    
        "module": "es2020",
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        "moduleResolution": "node",
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
    
        "target": "es2015",
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        "typeRoots": [
          "node_modules/@types"
        ],
        "lib": [
          "es2017",
          "dom"
        ]
      }
    }