mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
24 lines
504 B
JSON
24 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"
|
|
]
|
|
}
|