diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2022-10-20 16:03:19 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-11-29 11:23:05 +0100 |
commit | 064fa10ecfe4725398895a21ab8bafd171e2eadd (patch) | |
tree | 5f2d8124eb131a65eac207edee560c49ea7835f3 /tsconfig.json | |
parent | cedae7c6d74e11c8aaa59b09a38db04dbebc818d (diff) | |
download | nextcloud-server-064fa10ecfe4725398895a21ab8bafd171e2eadd.tar.gz nextcloud-server-064fa10ecfe4725398895a21ab8bafd171e2eadd.zip |
Extract colour from custom background
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000000..dcf7ae20ff7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,22 @@ +{ + "extends": "@vue/tsconfig/tsconfig.json", + "include": ["./**/*.ts"], + "compilerOptions": { + "types": ["node"], + "allowSyntheticDefaultImports": true, + "moduleResolution": "node", + "target": "ESNext", + "module": "esnext", + "declaration": true, + "strict": true, + "noImplicitAny": false, + "resolveJsonModule": true + }, + "ts-node": { + // these options are overrides used only by ts-node + // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable + "compilerOptions": { + "module": "commonjs" + } + } +} |