summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-05 11:53:35 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-04 19:53:35 -0500
commit17663c12326dd1053f89a3bd741807f139973dae (patch)
tree4588e84042b0155e11d7f5442ae38a6007922585 /tsconfig.json
parent9f33cd28963a72d8fea0b1e99bb61ca9bec21a94 (diff)
Add eslint for linting (denoland/deno_std#235)
Original: https://github.com/denoland/deno_std/commit/c0390ade3de4d825423c9f0f5e1aa56ffd509942
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 000000000..5a8dca33d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,15 @@
+{
+ "compilerOptions": {
+ "allowJs": true,
+ "baseUrl": ".",
+ "module": "esnext",
+ "moduleResolution": "node",
+ "noEmit": true,
+ "noLib": true,
+ "pretty": true,
+ "resolveJsonModule": true,
+ "strict": true,
+ "target": "esnext"
+ },
+ "include": ["./**/*.ts"]
+}