##// END OF EJS Templates
fixed strict mode @bind decorator
fixed strict mode @bind decorator

File last commit:

r28:b88fac0e76c0 v1.0.0-rc13 default
r28:b88fac0e76c0 v1.0.0-rc13 default
Show More
tsconfig.json
12 lines | 377 B | application/json | JsonLexer
cin
Initial commit, copied files related to .tsx scripts support.
r0 {
"compilerOptions": {
"moduleResolution": "node",
"noEmitOnError": true,
cin
typescript strict mode...
r1 "strict": true,
cin
Initial commit, copied files related to .tsx scripts support.
r0 "types": [],
"experimentalDecorators": true,
"jsxFactory": "createElement",
cin
fixed strict mode @bind decorator
r28 "skipLibCheck": true,
cin
Initial commit, copied files related to .tsx scripts support.
r0 "jsx": "react",
"lib": ["es5", "es2015.promise", "es2015.symbol", "es2015.iterable", "dom", "scripthost"]
}
}