2020-12-17 19:26:50 +00:00
|
|
|
{
|
2023-02-28 14:56:51 +00:00
|
|
|
"include": ["**/vite*config*", "**/*.ts"],
|
2020-12-19 05:23:51 +00:00
|
|
|
"exclude": ["**/dist/**"],
|
2020-12-17 19:26:50 +00:00
|
|
|
"compilerOptions": {
|
2023-02-28 14:56:51 +00:00
|
|
|
"checkJs": true,
|
2023-08-15 13:28:17 +00:00
|
|
|
"target": "ES2022",
|
2022-05-18 20:15:15 +00:00
|
|
|
"module": "ESNext",
|
2020-12-20 03:33:13 +00:00
|
|
|
"outDir": "dist",
|
2022-05-11 10:09:52 +00:00
|
|
|
"baseUrl": ".",
|
2020-12-19 05:23:51 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
2022-05-11 09:03:19 +00:00
|
|
|
"resolveJsonModule": true,
|
2024-10-21 07:33:54 +00:00
|
|
|
"moduleResolution": "Bundler",
|
2022-05-11 10:09:52 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"noUnusedLocals": true,
|
2021-01-09 00:18:14 +00:00
|
|
|
"jsx": "preserve",
|
2022-08-12 05:05:13 +00:00
|
|
|
"types": ["vite/client", "node"],
|
2022-05-11 09:03:19 +00:00
|
|
|
"paths": {
|
2024-02-08 09:43:45 +00:00
|
|
|
"~utils": ["./test-utils.ts"]
|
|
|
|
}
|
|
|
|
}
|
2020-12-17 19:26:50 +00:00
|
|
|
}
|