mirror of
https://github.com/yudai/gotty.git
synced 2025-12-26 04:08:50 +01:00
23 lines
504 B
JSON
23 lines
504 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals" : true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"target": "esnext",
|
|
"module": "commonJS",
|
|
"baseUrl": ".",
|
|
"types": ["preact", "node"],
|
|
"paths": {
|
|
"*": ["./typings/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|