feat: init

This commit is contained in:
montaghanmy
2023-03-23 11:03:16 +01:00
commit 10fe6f78d1
11518 changed files with 509786 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"experimentalDecorators": true,
"target": "ESNext",
"downlevelIteration": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"exclude": [
"node_modules",
"**/deprecated/*",
"**/backend/node/*",
],
"include": [
"./src/**/*"
],
"rootDir": "./",
}