2021-04-07 09:04:48 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-20 21:08:02 +01:00
|
|
|
"baseUrl": "./src",
|
2022-05-05 17:15:22 +02:00
|
|
|
"target": "esnext",
|
2022-11-02 09:11:35 +01:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-04-07 09:04:48 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-01-18 14:35:50 +01:00
|
|
|
"jsx": "react-jsx",
|
2022-11-02 09:11:35 +01:00
|
|
|
"strict": true,
|
|
|
|
"paths": {
|
|
|
|
"@server/*": ["./../../src/lib/*"]
|
2023-04-04 10:46:28 +02:00
|
|
|
},
|
|
|
|
"types": ["cypress"]
|
2021-04-07 09:04:48 +02:00
|
|
|
},
|
2023-04-04 10:46:28 +02:00
|
|
|
"include": ["./src", "cypress.d.ts"],
|
2022-05-05 17:15:22 +02:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
2021-04-07 09:04:48 +02:00
|
|
|
}
|