b7f52be4c9
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
Copilot Setup Steps / copilot-setup-steps (push) Has been cancelled
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
// THIS MUST BE AT ROOT, if you set baseurl in sub-package it breaks intellisense jump to
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"importHelpers": true,
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "system",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"target": "es5",
|
|
"types": ["node", "react"],
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"paths": {
|
|
"src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["**/test", "**/dist", "**/__tests__"],
|
|
"include": ["src/**/*"],
|
|
"types": ["@testing-library/jest-dom", "node"]
|
|
}
|