Initial i18n commit

This commit is contained in:
2023-09-15 23:37:29 -04:00
commit 2e2a2124fe
15 changed files with 9018 additions and 0 deletions

25
tsconfig.json Normal file
View File

@@ -0,0 +1,25 @@
{
// "extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": ["es2022", "dom"],
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"outDir": "lib/",
"removeComments": false,
"rootDirs": ["./", "src/"],
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "es2017"
},
"include": ["src"]
}