gotty/js/tsconfig.json
Will Owens 1de0cc6790 Run make tsfmt and make test
This formats all the go & ts files
2022-02-27 21:42:26 -05:00

21 lines
394 B
JSON

{
"compilerOptions": {
"newLine": "LF",
"strictNullChecks": true,
"noUnusedLocals" : true,
"noImplicitThis": true,
"alwaysStrict": true,
"outDir": "./dist/",
"declaration": true,
"sourceMap": true,
"target": "es5",
"module": "commonJS",
"baseUrl": ".",
"paths": {
"*": ["./typings/*"]
}
},
"exclude": [
"node_modules"
]
}