-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
19 lines (19 loc) · 963 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "paths": {
// "*": ["types/*"]
// }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "typeRoots": ["types", "node_modules/@types", "../../node_modules/@types"], /* List of folders to include type definitions from. */
// "types": [
// "node",
// "jest",
// "lodash",
// "minimist"
// ], /* Type declaration files to be included in compilation. */
"baseUrl": "./" /* Base directory to resolve non-absolute module names. */
},
"include": ["src/**/*.ts"]
}