DefinitelyTyped/types/ember-data/tsconfig.json
Bowden Kelly f9701a0279
Merge pull request #23238 from dwickern/ember-data-async-error
ember-data: fix error when using async/await
2018-02-26 11:46:05 -08:00

38 lines
891 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true
},
"files": [
"index.d.ts",
"test/lib/assert.ts",
"test/model.ts",
"test/module-api.ts",
"test/adapter.ts",
"test/serializer.ts",
"test/transform.ts",
"test/relationships.ts",
"test/store.ts",
"test/has-many.ts",
"test/belongs-to.ts",
"test/record-reference.ts",
"test/injections.ts",
"test/error.ts"
]
}