summaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
diff options
context:
space:
mode:
authorlishid <[email protected]>2020-10-25 16:55:59 -0400
committerlishid <[email protected]>2020-10-25 16:58:31 -0400
commited3770792a7a9ce698999de42ebb6150f5ee5e9e (patch)
tree0a7e047f2806eaccc88247d8ab360d6b877fa063 /tsconfig.json
downloadai-pulse-obsidian-plugin-ed3770792a7a9ce698999de42ebb6150f5ee5e9e.tar.gz
ai-pulse-obsidian-plugin-ed3770792a7a9ce698999de42ebb6150f5ee5e9e.zip
Initial commit!
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..b13c45f
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,21 @@
+{
+ "compilerOptions": {
+ "baseUrl": ".",
+ "inlineSourceMap": true,
+ "inlineSources": true,
+ "module": "CommonJS",
+ "target": "es5",
+ "allowJs": true,
+ "noImplicitAny": true,
+ "moduleResolution": "node",
+ "lib": [
+ "dom",
+ "es5",
+ "scripthost",
+ "es2015"
+ ]
+ },
+ "include": [
+ "**/*.ts"
+ ]
+}