summaryrefslogtreecommitdiff
path: root/src/js/tsconfig.json
diff options
context:
space:
mode:
authorTristan Marion <trismarion@gmail.com>2018-06-22 15:30:35 +0200
committerRyan Dahl <ry@tinyclouds.org>2018-06-22 15:30:35 +0200
commit3b595253a2e9f8badc416f85d0b09bf48f344634 (patch)
tree85939e43b504cf0ff78f69a1912209e90b67ffe5 /src/js/tsconfig.json
parent86354a29a40fb97e334f951428239ab8e171e2dd (diff)
Move `deno2` folder to `src` (#277)
Diffstat (limited to 'src/js/tsconfig.json')
-rw-r--r--src/js/tsconfig.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/js/tsconfig.json b/src/js/tsconfig.json
new file mode 100644
index 000000000..e9d42d62d
--- /dev/null
+++ b/src/js/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "compilerOptions": {
+ "allowJs": true,
+ "module": "commonjs",
+ "noImplicitAny": true,
+ "sourceMap": true,
+ "removeComments": true,
+ "preserveConstEnums": true,
+ "target": "es2017",
+ "noImplicitReturns": true,
+ "pretty": true,
+ "noFallthroughCasesInSwitch": true,
+ "allowUnreachableCode": false,
+ "experimentalDecorators": true
+ },
+ "include": ["**/*.ts", "**/*.js"],
+ "exclude": ["mock_runtime.js", "node_modules"]
+}