-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
25 lines (25 loc) · 1.01 KB
/
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
{
"include": ["./src"],
"compilerOptions": {
"declarationMap": true,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true,
"strictPropertyInitialization": false,
"isolatedModules": true,
"lib": ["ES2019"] /* Emit ECMAScript-standard-compliant class fields. */,
"module": "ESNext" /* Specify what module code is generated. */,
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
"resolveJsonModule": true,
"target": "ES2015",
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"baseUrl": "."
}
}