-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
38 lines (35 loc) · 1.04 KB
/
tsconfig.json
File metadata and controls
38 lines (35 loc) · 1.04 KB
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
32
33
34
35
36
37
38
{
/**
* Instructs the TypeScript compiler how to compile the .ts files.
* @see https://www.typescriptlang.org/tsconfig#compilerOptions
*/
"compilerOptions": {
/**
* Emit design-type metadata for decorated declarations in source files.
* @see https://www.typescriptlang.org/tsconfig#emitDecoratorMetadata
*/
"emitDecoratorMetadata": true,
/**
* Enable experimental support for legacy experimental decorators.
* @see https://www.typescriptlang.org/tsconfig#experimentalDecorators
*/
"experimentalDecorators": true
},
/**
* Specifies an allowed list of files to be included in the program.
* @see https://www.typescriptlang.org/tsconfig#files
*/
"files": [],
/**
* Project references are a way to structure your TypeScript programs into smaller pieces.
* @see https://www.typescriptlang.org/tsconfig#references
*/
"references": [
{
"path": "./config/typescript/tsconfig.appsscript.json"
},
{
"path": "./config/typescript/tsconfig.node.json"
}
]
}