39 строки
883 B
JSON
39 строки
883 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"typeRoots": ["./node_modules/@types", "./typings"],
|
|
"lib": ["es2022"],
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": ["**/*.test.ts", "**/*.spec.ts", "./.ossdev/**/*"],
|
|
"include": [
|
|
"./*.ts",
|
|
"./api/**/*",
|
|
"./bin/**/*",
|
|
"./business/**/*",
|
|
"./config/**/*",
|
|
"./data/**/*",
|
|
"business/entities/**/*",
|
|
"business/features/**/*",
|
|
"./interfaces/**/*",
|
|
"./jobs/**/*",
|
|
"./lib/**/*",
|
|
"./microsoft/**/*",
|
|
"./middleware/**/*",
|
|
"./routes/**/*",
|
|
"./scripts/**/*",
|
|
"./test/**/*",
|
|
"business/webhooks/**/*"
|
|
]
|
|
}
|