-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 1018 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
{
"compilerOptions": {
"lib": ["dom", "ES2021","esnext.asynciterable"],
"types": ["node"],
"target": "ES2021",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./lib",
"noImplicitAny": false,
"declaration": true,
"strict": true, /* enable strict type checking option */
"emitDecoratorMetadata": true, /* Send design-type metadata for decorator declaration to source */
"experimentalDecorators": true, /* enabled for ES decorators */
"sourceMap": true, /* Use Source Map */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules without default export */
"esModuleInterop": true, /*'require' and'import' compatible */
"skipLibCheck": true, /* Omit type checking of all declaration files (*.d.ts) */
"resolveJsonModule": true, /* Include modules imported with .json extension */
"baseUrl": "src",
},
"include": [
"src/**/*" ],
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.test.ts",
]
}