nordeck-workadventure

git clone git://archive.git.mtrnord.blog/MTRNord/nordeck-workadventure.git
Log | Files | Refs | README

tsconfig.json (798B)


      1 {
      2   "compilerOptions": {
      3     "outDir": "./dist/",
      4     "target": "ESNext",
      5     "useDefineForClassFields": true,
      6     "module": "ESNext",
      7     "lib": [
      8       "ESNext",
      9       "DOM"
     10     ],
     11     "allowJs": true,
     12     "moduleResolution": "Node",
     13     "strict": true,
     14     "noImplicitAny": true,
     15     "strictNullChecks": true,
     16     "strictFunctionTypes": true,
     17     "strictBindCallApply": true,
     18     "strictPropertyInitialization": true,
     19     "noImplicitThis": true,
     20     "alwaysStrict": true,
     21     "noFallthroughCasesInSwitch": true,
     22     "sourceMap": true,
     23     "resolveJsonModule": true,
     24     "isolatedModules": true,
     25     "esModuleInterop": true,
     26     "noEmit": true,
     27     "noUnusedLocals": true,
     28     "noUnusedParameters": true,
     29     "noImplicitReturns": true,
     30     "skipLibCheck": true
     31   },
     32   "include": [
     33     "src"
     34   ]
     35 }