aboutsummaryrefslogblamecommitdiffhomepage
path: root/tsconfig.base.json
blob: b54d5a5565a87f3746e08790ff8c8128e86401c5 (plain) (tree)
1
2
3
4
5
6




                           
                      







                                             
            





               
                    

                                  
                                  
                                     



                              

                          

   
{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es2015",
    "noImplicitAny": false,
    "sourceMap": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "importHelpers": true,
    "removeComments": true,
    "strictBindCallApply": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "lib": [
      "dom",
      "es2015",
      "es2016",
      "es2017",
      "es2018",
      "es2019"
    ],
    "baseUrl": "./",
    "paths": {
      "@server/*": [ "server/*" ],
      "@shared/*": [ "shared/*" ],
      "@client/*": [ "client/src/*" ]
    },
    "resolveJsonModule": true,
    "strict": false,
    "skipLibCheck": true,
    "composite": true,
    "declarationMap": true
  }
}