mirror of
https://github.com/yudai/gotty.git
synced 2025-09-21 21:40:49 +02:00

* Move to TypeScript from legacy JavaScript * Add support of xterm.js * Hterm is still available for backward compatibility
20 lines
405 B
JSON
20 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals" : true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"outDir": "./dist/",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"module": "commonJS",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["./typings/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|