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": "es6",
|
||||
"module": "esnext",
|
||||
"moduleResolution": "bundler",
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"downlevelIteration": true,
|
||||
"sourceMap": true,
|
||||
"noEmit": true,
|
||||
"noEmitHelpers": false,
|
||||
"importHelpers": false,
|
||||
"strictNullChecks": true,
|
||||
"noUnusedParameters": false,
|
||||
"noUnusedLocals": false,
|
||||
"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/*"],
|
||||
"constants/*": ["./constants/*"],
|
||||
"hooks/*": ["./hooks/*"],
|
||||
"interfaces/*": ["./interfaces/*"],
|
||||
"routers/*": ["./routers/*"],
|
||||
"store/*": ["./store/*"],
|
||||
"services/*": ["./services/*"],
|
||||
"theme/*": ["./theme/*"],
|
||||
"lang/*": ["./lang/*"],
|
||||
"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