22 lines
458 B
JSON
22 lines
458 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"types": ["vitest/globals", "node"],
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true
|
|
},
|
|
"include": [
|
|
"packages/**/*",
|
|
"apps/**/*",
|
|
"tests/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.js",
|
|
"tests/e2e/step-definitions/automation.steps.ts"
|
|
]
|
|
} |