@stamhoofd/backend-backup 2.50.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsconfig.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "es2022", // needs to be es2019 to support optional chaining. Node.js doesn't support optional chaining yet, so we need the transpiling
4
+ "module": "commonjs",
5
+ "jsx": "preserve",
6
+ "importHelpers": true,
7
+ "moduleResolution": "node",
8
+ "experimentalDecorators": true,
9
+ "esModuleInterop": true,
10
+ "allowSyntheticDefaultImports": true,
11
+ "sourceMap": true,
12
+ "strictNullChecks": true,
13
+ "declaration": true,
14
+ "declarationMap": true,
15
+ "outDir": "dist",
16
+ "lib": [
17
+ "es2022",
18
+ "dom" // for puppeteer
19
+ ],
20
+ "types": [
21
+ "node",
22
+ "jest",
23
+ "@stamhoofd/backend-i18n",
24
+ ]
25
+ },
26
+ "include": [
27
+ "**/*.ts",
28
+ "../../../*.d.ts"
29
+ ],
30
+ "exclude": [
31
+ "node_modules",
32
+ "dist"
33
+ ]
34
+ }