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

22 lines
469 B
JSON
Raw Normal View History

2017-02-22 18:03:21 +03:00
{
"compilerOptions": {
"module": "commonjs",
2017-02-25 04:34:37 +03:00
"target": "es5",
"lib": [
"es2015"
],
2017-02-22 18:03:21 +03:00
"noImplicitAny": true,
"noEmitOnError": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "LF",
"strictNullChecks": true,
"sourceMap": false
2017-02-22 21:04:46 +03:00
},
"exclude": [
"node_modules"
]
2017-02-22 18:03:21 +03:00
}