1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 02:27:10 +03:00
mal/ts/tsconfig.json

16 lines
376 B
JSON
Raw Normal View History

2017-02-22 18:03:21 +03:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"noImplicitAny": true,
"noEmitOnError": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "LF",
"strictNullChecks": true,
"sourceMap": false
}
}