-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (47 loc) · 1.71 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"ts-node": {
"transpileOnly": true
},
"typedocOptions": {
"entryPoints": ["packages/@memoria/model/src/index.ts", "packages/@memoria/adapters/src/index.ts"],
"out": "docs"
},
"compilerOptions": {
"target": "ESNEXT", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs",
"declaration": true, /* Generates corresponding '.d.ts' file. */
"outDir": "./dist", /* Redirect output structure to the directory. */
"inlineSourceMap": true,
"inlineSources": true,
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "./", /* Base directory to resolve non-absolute module names. */
"experimentalDecorators": true,
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
// Enhance Strictness
"noUnusedLocals": true,
"noImplicitThis": true,
// Enabling these breaks @glimmer/application, fix and reenable this
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": false,
"noUnusedParameters": true,
"strictNullChecks": true,
"allowUnreachableCode": false,
"noImplicitReturns": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"newLine": "LF",
"paths": {
"@memoria/adapters": ["packages/@memoria/adapters/src"],
"@memoria/model": ["packages/@memoria/model/src"]
},
"types": [
"node"
]
},
"include": ["packages/@memoria/adapter/src/**/*", "packages/@memoria/model/src/**/*"],
"exclude": [
"test",
"packages/@memoria/server"
]
}