forked from hashicorp/vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
83 lines (83 loc) · 3.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noEmitOnError": true,
"skipLibCheck": true,
// The combination of `baseUrl` with `paths` allows Ember's classic package
// layout, which is not resolvable with the Node resolution algorithm, to
// work with TypeScript.
"baseUrl": ".",
"paths": {
"vault/tests/*": ["tests/*"],
"vault/mirage/*": ["mirage/*"],
"vault/*": [
"types/*",
"types/vault/*",
"app/*",
"lib/core/app/*",
"lib/css/app/*",
"lib/kmip/app/*",
"lib/open-api-explorer/app/*",
"lib/pki/app/*",
"lib/replication/app/*",
"lib/service-worker-authenticated-download/app/*"
],
"core": ["lib/core/addon"],
"core/*": ["lib/core/addon/*"],
"core/test-support": ["lib/core/addon-test-support"],
"core/test-support/*": ["lib/core/addon-test-support/*"],
"css": ["lib/css/addon"],
"css/*": ["lib/css/addon/*"],
"css/test-support": ["lib/css/addon-test-support"],
"css/test-support/*": ["lib/css/addon-test-support/*"],
"kmip": ["lib/kmip/addon"],
"kmip/*": ["lib/kmip/addon/*"],
"kmip/test-support": ["lib/kmip/addon-test-support"],
"kmip/test-support/*": ["lib/kmip/addon-test-support/*"],
"open-api-explorer": ["lib/open-api-explorer/addon"],
"open-api-explorer/*": ["lib/open-api-explorer/addon/*"],
"open-api-explorer/test-support": ["lib/open-api-explorer/addon-test-support"],
"open-api-explorer/test-support/*": ["lib/open-api-explorer/addon-test-support/*"],
"pki": ["lib/pki/addon"],
"pki/*": ["lib/pki/addon/*"],
"pki/test-support": ["lib/pki/addon-test-support"],
"pki/test-support/*": ["lib/pki/addon-test-support/*"],
"replication": ["lib/replication/addon"],
"replication/*": ["lib/replication/addon/*"],
"replication/test-support": ["lib/replication/addon-test-support"],
"replication/test-support/*": ["lib/replication/addon-test-support/*"],
"service-worker-authenticated-download": ["lib/service-worker-authenticated-download/addon"],
"service-worker-authenticated-download/*": ["lib/service-worker-authenticated-download/addon/*"],
"service-worker-authenticated-download/test-support": [
"lib/service-worker-authenticated-download/addon-test-support"
],
"service-worker-authenticated-download/test-support/*": [
"lib/service-worker-authenticated-download/addon-test-support/*"
],
"*": ["types/*"]
}
},
"include": [
"app/**/*",
"tests/**/*",
"types/**/*",
"lib/core/**/*",
"lib/css/**/*",
"lib/kmip/**/*",
"lib/open-api-explorer/**/*",
"lib/pki/**/*",
"lib/replication/**/*",
"lib/service-worker-authenticated-download/**/*",
"mirage/**/*"
],
"exclude": ["node_modules"]
}