Initial working version

This commit is contained in:
nitowa
2022-11-21 13:22:53 +01:00
commit 3175b262c2
30 changed files with 29678 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"strictPropertyInitialization": false,
"noImplicitAny": false,
"target": "esNext",
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": "./",
"outDir": "./lib",
"strictNullChecks": false,
"esModuleInterop": true
},
"include": ["src", "test"],
"exclude": ["src/gui"]
}