diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-29 02:25:27 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-29 02:25:27 +0200 |
commit | af498e78291b67377aaf876c84143cdfe7c8b308 (patch) | |
tree | 091f03c5a78823de12ddd1f4ab60e2fe0ddb4803 /tsconfig.json | |
download | Vencord-af498e78291b67377aaf876c84143cdfe7c8b308.tar.gz Vencord-af498e78291b67377aaf876c84143cdfe7c8b308.tar.bz2 Vencord-af498e78291b67377aaf876c84143cdfe7c8b308.zip |
Rewrite
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f2d41d0 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "lib": ["DOM", "esnext", "esnext.array", "esnext.asynciterable", "esnext.symbol"], + "module": "commonjs", + "moduleResolution": "node", + "strict": true, + "noImplicitAny": false, + "target": "ESNEXT" + }, + "include": ["src/*"] +} |