1
Fork 0
galene/static/tsconfig.json

22 lines
512 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES6",
"allowJs": true,
"checkJs": true,
"declaration": true,
"noImplicitThis": true,
"emitDeclarationOnly": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true
},
"files": [
"protocol.js",
2024-05-02 18:32:04 +02:00
"galene.js",
2024-06-08 14:34:34 +02:00
"management.js",
"example/example.js"
]
}