diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
commit | 773c4ef10e3b2be7376271afe30633848fb0eb94 (patch) | |
tree | d2d2a02b5596f413ad3b2f21e1aa6e83c59e59b7 /tsconfig.json | |
parent | 2876d7a9ec90cd75274b18f6383fa35bd075d6b2 (diff) |
python from stdin + plugin beginnings
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a245282 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "moduleResolution": "node", + "pretty": false, + "target": "ESNext", + "module": "ESNext", + "inlineSources": true, + "inlineSourceMap": true + }, + "exclude": [ "node_modules" ], + "files": [ + "./index.ts", + "./plugin.ts" + ] +} |