-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 889 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
// 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": ".",
"moduleResolution": "node",
"strictFunctionTypes": false,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"dummy/tests/*": ["tests/*"],
"dummy/*": ["tests/dummy/app/*", "app/*"],
"@upfluence/oss-components": ["addon"],
"@upfluence/oss-components/*": ["addon/*"],
"@upfluence/oss-components/test-support": ["addon-test-support"],
"@upfluence/oss-components/test-support/*": ["addon-test-support/*"],
"*": ["types/*"]
}
},
"include": ["app/**/*", "addon/**/*", "tests/**/*", "types/**/*", "test-support/**/*", "addon-test-support/**/*"]
}