-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
19 lines (19 loc) · 784 Bytes
/
tsconfig.json
File metadata and controls
19 lines (19 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": [
"@tsconfig/node-ts/tsconfig.json",
"@tsconfig/node-lts/tsconfig.json"
],
"compilerOptions": {
"outDir": "./dist" /* Redirect output structure to the directory. */,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"sourceMap": true /* Generates corresponding '.map' file. */,
"declaration": true /* Generates corresponding '.d.ts' file. */
},
"include": [
"src/**/*" /* Specifies an array of filenames or patterns to include in the program. */
],
"exclude": [
"node_modules" /* Specifies an array of filenames or patterns that should be skipped when resolving include. */,
"**/*.test.ts" /* Exclude test files from the main build */
]
}