2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"outDir": "bin",
|
|
|
|
|
"target": "es2016",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
2022-10-26 07:27:35 +00:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
2022-05-18 07:26:57 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitReturns": true,
|
2022-10-26 07:27:35 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
2022-12-20 14:34:46 +00:00
|
|
|
"include": ["services/**/*.ts", "utils/*c*/*.ts", "index.ts", "types.ts"]
|
2022-05-18 07:26:57 +00:00
|
|
|
}
|