-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
33 lines (33 loc) · 898 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
25
26
27
28
29
30
31
32
33
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node.js",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"target": "esnext",
"module": "CommonJS",
"allowJs": true,
"removeComments": true,
"resolveJsonModule": true,
"types": ["node"],
"sourceMap": true,
"outDir": "dist",
"lib": ["esnext", "dom"],
"baseUrl": "./",
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "Node",
"skipLibCheck": true
},
"include": ["backend/src/**/*"],
"exclude": ["node_modules"]
}