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

github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2018-09-05 12:05:56 +0300
committersualko <klaus@jsxc.org>2018-10-17 14:03:54 +0300
commit8d04c91ee21ba45c51b5e7391f5182f214e196ee (patch)
treec695650189fa936295861544dfe0d79991b4ffd0 /tsconfig.json
parente5214aa68c39c0ebeb53be2a3b1c8cdb2797b7eb (diff)
feat: migrate to jsxc v4.0.0-alpha
- use webpack to build packages - use typescript
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..74fd9ee
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,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" }
+ // ]
+}