Implement misc and tests

This commit is contained in:
2024-05-14 11:31:56 +02:00
commit cde473540a
5 changed files with 110 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{
"compilerOptions": {
"baseUrl": ".",
// Enable latest features
"lib": [
"ESNext",
"dom"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": false,
"checkJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": [
"index.ts",
]
}