initial commit
This commit is contained in:
46
tsconfig.app.json
Normal file
46
tsconfig.app.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2022",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"downlevelIteration": true,
|
||||
"sourceMap": true,
|
||||
"noEmit": true,
|
||||
"noEmitHelpers": true,
|
||||
"importHelpers": true,
|
||||
"strictNullChecks": true,
|
||||
"noUnusedParameters": true,
|
||||
"noUnusedLocals": true,
|
||||
"noImplicitAny": true, // TODO(AZ): Fix types to enable setting this to true
|
||||
"lib": ["dom", "dom.iterable", "es2022"],
|
||||
"baseUrl": "./src",
|
||||
"paths": {
|
||||
// Relative to baseUrl https://www.typescriptlang.org/tsconfig/#paths
|
||||
"assets/*": ["./assets/*"],
|
||||
"components/*": ["./components/*"],
|
||||
"config/*": ["./config/*"],
|
||||
"constant-data/*": ["./constant-data/*"],
|
||||
"hooks/*": ["./hooks/*"],
|
||||
"interfaces/*": ["./interfaces/*"],
|
||||
"routers/*": ["./routers/*"],
|
||||
"store/*": ["./store/*"],
|
||||
"services/*": ["./services/*"],
|
||||
"lang/*": ["./lang/*"],
|
||||
"utility/*": ["./utility/*"],
|
||||
"views/*": ["./views/*"]
|
||||
},
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "react-jsx",
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"exclude": ["node_modules", "public"],
|
||||
"include": ["src", "test"]
|
||||
}
|
||||
Reference in New Issue
Block a user