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

github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsualko <klaus@jsxc.org>2017-05-04 11:48:32 +0300
committersualko <klaus@jsxc.org>2017-05-04 11:48:32 +0300
commit4fb2ea3ee30e305e932d8773b90a8c81fff4eb45 (patch)
treeb77c8b3410d44a0e1eef6124cc1f19ce1db78318 /tsconfig.json
parent78cb8426c3d1a6d8c9d5b16dad67808112f70cf3 (diff)
start switching to typescript and handlebars
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 00000000..59280388
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "allowSyntheticDefaultImports": true,
+ "compilerOptions": {
+ "module": "commonjs",
+ "outDir": "./dist",
+ "allowJs": true,
+ "target": "es5",
+ "lib": ["dom", "es2015.promise", "es5"]
+ },
+ "include": [
+ "./src/**/*.ts",
+ "./template/*.hbs",
+ "./*.d.ts"
+ ],
+ "exclude": [
+ "node_modules",
+ "typings"
+ ]
+}