-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
22 lines (17 loc) · 1.03 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
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Basic Options */
"outDir": "build", /* Redirect output structure to the directory. */
"rootDir": "src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
/* Advanced Options */
"resolveJsonModule": true, /* Include modules imported with '.json' extension */
},
"include": [
"src/main/**/*" /* Specifies an array of filenames or patterns to include in the program */
],
"extends": "@tsconfig/node12/tsconfig.json" /* see: https://www.npmjs.com/package/@tsconfig/node12 */
}