DefinitelyTyped/types/knockout/tsconfig.json
Retsam 1d74d5ac42 Knockout - add readonly types for observables, observable arrays, and computeds (#30499)
* Add KnockoutReadonlyObservable type

* Add KnockoutReadonlyObservableArray type

* Add KnockoutReadonlyComputed type

* Add myself to authors list
2018-11-19 11:47:02 -08:00

27 lines
573 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/templatingBehaviors.ts",
"test/index.ts",
"test/readonly.ts"
]
}