DefinitelyTyped/types/ember-data/tsconfig.json
Daniel Rosenwasser ec72394362
Merge pull request #23591 from chriskrycho/fix-ember-data-snaphot-belongs-to
Ember Data: fix `Snapshot.belongsTo`.
2018-02-19 10:55:10 -08:00

37 lines
858 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": 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"
]
}