Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tsconfig.json - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74fd9ee2e5ef0dabaa86832c3289bcc3457b46ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
   "include": [
      "./ts/**/*.ts",
      "./*.d.ts"
   ],

   "compilerOptions": {
      /* Basic Options */
      "moduleResolution": "node",
      "module": "commonjs",
      "outDir": "./dist",
      "target": "es5",
      "lib": ["dom", "es2015", "es2015.promise", "es5"]
   }

   // "references": [
   //   { "path": "./node_modules/jsxc" }
   // ]
}