2020-05-08 12:04:00 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-07-04 17:10:00 +02:00
|
|
|
"lib": ["ESNext", "DOM", "WebWorker"],
|
2020-05-08 12:04:00 +02:00
|
|
|
"baseUrl": "source",
|
2021-05-14 16:14:22 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
2021-12-28 11:56:23 +01:00
|
|
|
"isolatedModules": true,
|
2020-05-08 12:04:00 +02:00
|
|
|
"paths": {
|
2022-03-03 14:37:53 +01:00
|
|
|
"@/*": ["*"]
|
2020-05-15 16:16:13 +02:00
|
|
|
},
|
2022-11-23 18:21:30 +01:00
|
|
|
"types": ["vite/client", "vite-plugin-pwa/client"],
|
2022-06-28 10:24:34 +02:00
|
|
|
"typeRoots": ["./node_modules/@types", "./types/"],
|
2020-11-23 15:16:13 +01:00
|
|
|
"noEmit": true,
|
|
|
|
"strict": true
|
2020-05-08 12:04:00 +02:00
|
|
|
},
|
2022-05-31 11:53:07 +02:00
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true
|
|
|
|
},
|
2022-01-28 10:20:54 +01:00
|
|
|
"include": [
|
|
|
|
"source",
|
2022-03-01 15:52:55 +01:00
|
|
|
"scripts",
|
2022-01-28 10:20:54 +01:00
|
|
|
"test/**/*.ts",
|
|
|
|
"vite.config.ts",
|
2022-05-24 19:00:18 +02:00
|
|
|
"cypress.config.ts",
|
2022-06-21 13:34:44 +02:00
|
|
|
"vite-iframe-script.config.ts",
|
2023-02-01 18:53:17 +01:00
|
|
|
"vite-build-simulation-data.config.ts",
|
2022-08-03 17:00:50 +02:00
|
|
|
"prerender.ts",
|
|
|
|
"vite-pwa-options.ts"
|
2022-01-28 10:20:54 +01:00
|
|
|
]
|
2020-05-08 12:04:00 +02:00
|
|
|
}
|