From 05ac57f6aae921e24cb425c13f60b0d830c0926e Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 3 Jun 2022 21:49:11 +0100 Subject: [PATCH] yeah --- src/Ombi/ClientApp/tsconfig.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/Ombi/ClientApp/tsconfig.json diff --git a/src/Ombi/ClientApp/tsconfig.json b/src/Ombi/ClientApp/tsconfig.json new file mode 100644 index 000000000..aef5c882b --- /dev/null +++ b/src/Ombi/ClientApp/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "baseUrl": "./", + "module": "esnext", + "outDir": "./dist/out-tsc", + "sourceMap": true, + "declaration": false, + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "target": "es2015", + "types": ["node"], + "resolveJsonModule":true, + "allowSyntheticDefaultImports":true, + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + } +, + "files": [ + "main.ts", + "polyfills.ts" + ], + "include": [ + "src/**/*.d.ts" + ] +}