UNPKG

ember-assembly

Version:

A collection of beautiful UI components built by Goods

60 lines (57 loc) 1.36 kB
{ "extends": "@tsconfig/ember/tsconfig.json", "compilerOptions": { "allowJs": true, "moduleResolution": "node", "allowSyntheticDefaultImports": true, "noImplicitAny": true, "noImplicitThis": true, "alwaysStrict": true, "strictNullChecks": true, "strictPropertyInitialization": true, "noFallthroughCasesInSwitch": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noEmitOnError": false, "noEmit": true, "inlineSourceMap": true, "inlineSources": 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": { "dummy/tests/*": [ "tests/*" ], "dummy/*": [ "tests/dummy/app/*", "app/*" ], "ember-assembly": [ "addon" ], "ember-assembly/*": [ "addon/*" ], "ember-assembly/test-support": [ "addon-test-support" ], "ember-assembly/test-support/*": [ "addon-test-support/*" ], "*": [ "types/*" ] } }, "include": [ "app/**/*", "addon/**/*", "tests/**/*", "types/**/*", "test-support/**/*", "addon-test-support/**/*" ] }