matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

tsconfig.worker.json (753B)


      1 {
      2     "compilerOptions": {
      3         "composite": true,
      4         "rootDir": "./src",
      5         "target": "ES5",
      6         "useDefineForClassFields": true,
      7         "lib": [
      8             "DOM",
      9             "DOM.Iterable",
     10             "ESNext"
     11         ],
     12         "allowJs": false,
     13         "skipLibCheck": true,
     14         "esModuleInterop": true,
     15         "allowSyntheticDefaultImports": true,
     16         "strict": true,
     17         "forceConsistentCasingInFileNames": true,
     18         "module": "CommonJS",
     19         "moduleResolution": "Node",
     20         "resolveJsonModule": true,
     21         "isolatedModules": false,
     22         "jsx": "preserve",
     23         "jsxFactory": "h",
     24         "jsxFragmentFactory": "Fragment"
     25     },
     26     "include": [
     27         "./src/matrix/workers/**/*.ts"
     28     ]
     29 }