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