mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
22 lines
432 B
JSON
22 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals" : true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"outDir": "./dist/",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"module": "commonJS",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["./typings/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|