2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-18 21:37:15 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
"outDir": "dist",
|
2022-02-27 00:13:35 +00:00
|
|
|
"sourceMap": true,
|
2022-03-24 19:27:27 +00:00
|
|
|
"strict": true,
|
2023-09-13 17:04:17 +00:00
|
|
|
"module": "ESNext",
|
2023-09-13 17:19:57 +00:00
|
|
|
"lib": ["ESNext", "DOM"],
|
2023-09-13 17:04:17 +00:00
|
|
|
"target": "ESNext",
|
2022-02-27 00:13:35 +00:00
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
2022-03-25 21:39:26 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-04-05 20:01:16 +00:00
|
|
|
"esModuleInterop": true,
|
2023-09-20 23:50:17 +00:00
|
|
|
"skipLibCheck": true,
|
2023-09-18 21:37:15 +00:00
|
|
|
"paths": {
|
|
|
|
"soapbox/*": ["src/*"],
|
|
|
|
},
|
2023-09-16 19:36:53 +00:00
|
|
|
"typeRoots": [
|
2023-09-18 22:03:23 +00:00
|
|
|
"./src/types",
|
2023-09-16 19:36:53 +00:00
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules"
|
|
|
|
],
|
2023-09-13 17:04:17 +00:00
|
|
|
"types": [
|
|
|
|
"vite/client",
|
2023-09-16 19:36:53 +00:00
|
|
|
"vitest/globals",
|
2023-09-13 17:04:17 +00:00
|
|
|
"vite-plugin-compile-time/client"
|
|
|
|
]
|
2022-07-06 16:26:44 +00:00
|
|
|
}
|
2022-02-27 00:13:35 +00:00
|
|
|
}
|