forked from emberjs/babel-plugin-ember-template-compilation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (32 loc) · 803 Bytes
/
tsconfig.json
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": {
// Compilation Configuration
"target": "es2015",
"module": "commonjs",
"inlineSources": true,
"inlineSourceMap": true,
"declaration": true,
// Environment Configuration
"experimentalDecorators": true,
"moduleResolution": "node",
"esModuleInterop": true,
// Enhance Strictness
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": false,
"noUnusedParameters": true,
"strictNullChecks": true,
"allowUnreachableCode": false,
"noImplicitReturns": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strict": true,
"newLine": "LF",
},
"include": [
"./src/**/*.ts",
"./__tests__/**/*.ts",
"local-types.d.ts",
],
}