##// END OF EJS Templates
corrected code to support ts strict mode...
corrected code to support ts strict mode safe.ts - more tight typings - added notImplemented stub function - added fork funtion - added keys function (like Object.keys but extracts keys type) - added isKeyof typeguard - added 'primitive' union type added EventProvider for the observable

File last commit:

r109:f71c50acc9f9 ioc ts support
r115:691199f665e0 ioc ts support
Show More
tsconfig.json
11 lines | 336 B | application/json | JsonLexer
cin
working on multiplaftorm support (node, browser)
r47 {
"compilerOptions": {
cin
changed the project structure
r49 "moduleResolution": "node",
cin
Initial work on typescript support for the container configuration
r107 "experimentalDecorators": true,
cin
working version...
r51 "noEmitOnError": true,
cin
changed the project structure
r49 "listFiles": true,
cin
working on di decorators
r109 "strict": true,
cin
working on support commonjs modules format
r59 "types": [],
cin
Initial work on typescript support for the container configuration
r107 "target": "ES5",
cin
working build and test for browser and node targets
r93 "lib": ["es5", "es2015.promise", "es2015.symbol", "es2015.iterable", "dom", "scripthost"]
cin
migrating to new project plugin 1.0.1-rc1...
r90 }
cin
working on multiplaftorm support (node, browser)
r47 }