-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
24 lines (22 loc) · 875 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"lib": ["es5", "es6", "esnext.asynciterable"],
"target": "es6",
"module": "Node16",
// "strict": true, // TODO: enable
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"checkJs": false,
"allowJs": false,
"moduleResolution": "node16",
"resolveJsonModule": true,
"skipLibCheck": true,
// required for typeorm
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strictNullChecks": true,
"strictPropertyInitialization": false, // disable because of entities,
"typeRoots": ["./node_modules/@types", "./src/@types/*"]
},
"include": ["src/**/*", "test"]
}