forked from karafra/ai-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 814 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
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2022",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"strict": false,
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"esModuleInterop": true,
"noFallthroughCasesInSwitch": false,
"typeRoots": ["src/types/typings", "node_modules/@types"],
"useDefineForClassFields": true,
"skipDefaultLibCheck": true
},
"include": ["src/**/*.ts", "src/types/typings/index.d.ts", "src/amqp/amqp.configuration.ts", "src/amqp/amqp.configuration"]
}