42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM"],
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"packages/*": ["packages/*"],
|
|
"apps/*": ["apps/*"],
|
|
"@gridpilot/shared-result": ["packages/shared/result/Result.ts"],
|
|
"@gridpilot/shared": ["packages/shared/index.ts"],
|
|
"@gridpilot/shared/application": ["packages/shared/application"],
|
|
"@gridpilot/shared/domain": ["packages/shared/domain"],
|
|
"@gridpilot/shared/errors": ["packages/shared/errors"],
|
|
"@gridpilot/automation/*": ["packages/automation/*"],
|
|
"@gridpilot/testing-support": ["packages/testing-support/index.ts"],
|
|
"@gridpilot/media": ["packages/media/index.ts"]
|
|
},
|
|
"types": ["vitest/globals", "node"],
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"packages/**/*",
|
|
"apps/**/*",
|
|
"tests/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.js",
|
|
"tests/e2e/step-definitions/automation.steps.ts"
|
|
]
|
|
} |