We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24f3669 commit 31d41e7Copy full SHA for 31d41e7
the-alexa-skill/typescript/lambda-fns/tsconfig.json
@@ -0,0 +1,26 @@
1
+{
2
+ "compilerOptions": {
3
+ "target":"ES2018",
4
+ "module": "commonjs",
5
+ "lib": ["es2018"],
6
+ "declaration": true,
7
+ "strict": true,
8
+ "noImplicitAny": true,
9
+ "strictNullChecks": true,
10
+ "noImplicitThis": true,
11
+ "alwaysStrict": true,
12
+ "noUnusedLocals": false,
13
+ "noUnusedParameters": false,
14
+ "noImplicitReturns": true,
15
+ "noFallthroughCasesInSwitch": false,
16
+ "inlineSourceMap": true,
17
+ "inlineSources": true,
18
+ "experimentalDecorators": true,
19
+ "strictPropertyInitialization":false,
20
+ "typeRoots": ["./node_modules/@types"]
21
+ },
22
+ "files": [
23
+ "lambda.ts"
24
+ ],
25
+ "exclude": ["node_modules"]
26
+}
0 commit comments