-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 769 Bytes
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 769 Bytes
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
{
"compilerOptions": {
"target": "es6",
"moduleResolution": "Node",
"module": "ES2020",
"declaration": false,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"pretty": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitUseStrict": false,
"outDir": "lib",
"rootDir": ".",
"baseUrl": "behavior_packs/",
"listFiles": false,
"noEmitHelpers": true,
"skipLibCheck": true
},
"include": [
"scripts/**/*"
],
"exclude": [
"lib",
"dist",
"node_modules"
],
"compileOnSave": false
}