lila/ui/cli/tsconfig.json

16 lines
392 B
JSON
Raw Normal View History

2017-10-22 11:33:16 -06:00
{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmitOnError": false,
"alwaysStrict": true,
"noImplicitReturns": true,
"noImplicitThis": true,
2019-02-28 03:27:57 -07:00
"moduleResolution": "node",
"target": "ES5",
"lib": ["DOM", "ES5", "es2015.core", "es2015.Promise", "es2015.Iterable"]
2017-10-22 11:33:16 -06:00
}
}