summaryrefslogtreecommitdiff
path: root/packages/backend/test/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/test/tsconfig.json')
-rw-r--r--packages/backend/test/tsconfig.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/backend/test/tsconfig.json b/packages/backend/test/tsconfig.json
new file mode 100644
index 0000000000..9f9e724ea2
--- /dev/null
+++ b/packages/backend/test/tsconfig.json
@@ -0,0 +1,41 @@
+{
+ "compilerOptions": {
+ "allowJs": true,
+ "noEmitOnError": false,
+ "noImplicitAny": true,
+ "noImplicitReturns": true,
+ "noUnusedParameters": false,
+ "noUnusedLocals": true,
+ "noFallthroughCasesInSwitch": true,
+ "declaration": false,
+ "sourceMap": true,
+ "target": "es2017",
+ "module": "commonjs",
+ "moduleResolution": "node",
+ "allowSyntheticDefaultImports": true,
+ "removeComments": false,
+ "noLib": false,
+ "strict": true,
+ "strictNullChecks": true,
+ "strictPropertyInitialization": false,
+ "experimentalDecorators": true,
+ "emitDecoratorMetadata": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "baseUrl": "./",
+ "paths": {
+ "@/*": ["../src/*"]
+ },
+ "typeRoots": [
+ "../node_modules/@types",
+ "../src/@types"
+ ],
+ "lib": [
+ "esnext"
+ ]
+ },
+ "compileOnSave": false,
+ "include": [
+ "./**/*.ts"
+ ]
+}