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