fix issues
This commit is contained in:
@@ -6,18 +6,42 @@
|
||||
"strictFunctionTypes": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"noImplicitThis": true,
|
||||
"alwaysStrict": true
|
||||
"alwaysStrict": true,
|
||||
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["apps/website/*"],
|
||||
"@core/*": ["core/*"],
|
||||
"@adapters/*": ["adapters/*"],
|
||||
"@testing/*": ["testing/*"]
|
||||
},
|
||||
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"moduleResolution": "bundler",
|
||||
"jsx": "preserve",
|
||||
"skipLibCheck": true,
|
||||
"exactOptionalPropertyTypes": false
|
||||
},
|
||||
"include": [
|
||||
"core/**/*",
|
||||
"apps/**/*",
|
||||
"tests/**/*",
|
||||
"adapters/**/*"
|
||||
"adapters/**/*",
|
||||
"apps/api/**/*",
|
||||
"apps/website/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"**/dist/**",
|
||||
"**/.next/**",
|
||||
"**/*.js",
|
||||
"tests/e2e/step-definitions/automation.steps.ts"
|
||||
"**/*.test.ts",
|
||||
"**/*.test.tsx",
|
||||
"**/*.spec.ts",
|
||||
"**/*.spec.tsx",
|
||||
"**/__tests__/**",
|
||||
"apps/companion/**/*",
|
||||
"tests/**/*",
|
||||
"testing/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user