forked from microsoft/teams-copilot-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (26 loc) · 865 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": {
"allowSyntheticDefaultImports": true,
"composite": true,
"declarationMap": true,
"strict": true,
"declaration": true,
"lib": ["ESNext", "DOM"],
"target": "ESNEXT",
"module": "CommonJS",
"outDir": "./lib",
"rootDir": "./src",
"sourceMap": true,
"incremental": true,
"tsBuildInfoFile": "./lib/.tsbuildinfo",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node", // to support injectable
"experimentalDecorators": true, // to support injectable
"emitDecoratorMetadata": true, // to support injectable
"types": ["jest", "reflect-metadata"],
},
"include": ["./src/**/*", "./src/adaptiveCards/templates/*.json", "./src/resources/*.json"],
"exclude": ["node_modules", "**/*.spec.ts", "lib"]
}