commit | bbc8d7c54f6356428bd6f7b98350a40aad7a48c3 | [log] [tgz] |
---|---|---|
author | Adrià Vilanova Martínez <me@avm99963.com> | Sun Apr 21 16:28:05 2024 +0200 |
committer | Adrià Vilanova Martínez <me@avm99963.com> | Sat May 11 01:52:04 2024 +0200 |
tree | 6c3367465fa568b19aced5e3a5ea5f282f69fdc9 | |
parent | d3495ee1e8c2bf93545f4823ec2bea5f6a3db029 [diff] [blame] |
chore: add Typescript support Fixed: twpowertools:198 Change-Id: I00a14ab8ad93e9ff8d2a4d2e33824a9290500a8a
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..3c671ac --- /dev/null +++ b/tsconfig.json
@@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "sourceMap": true, + "noImplicitAny": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "module": "es6", + "target": "es2019", + "moduleResolution": "bundler", + "allowJs": true + } +}