-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
31 lines (30 loc) · 958 Bytes
/
tsconfig.base.json
File metadata and controls
31 lines (30 loc) · 958 Bytes
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
29
30
31
{
"extends": "@tsconfig/node-lts-strictest/tsconfig.json",
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.d.ts"],
"compilerOptions": {
/* Basic Options */
"incremental": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"sourceMap": true,
"allowJs": true,
"noEmit": true,
"strict": true,
"strictPropertyInitialization": false,
/* Strict Type-Checking Options */
"noImplicitThis": true,
"alwaysStrict": true,
"resolveJsonModule": true,
"preserveValueImports": false,
"importsNotUsedAsValues": "remove",
"skipLibCheck": true,
"exactOptionalPropertyTypes": false,
"esModuleInterop": true,
"noImplicitAny": false,
/* Experimental Options */
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}