34 lines
661 B
JSON
34 lines
661 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"soapbox/*": ["src/*"],
|
|
},
|
|
"typeRoots": [
|
|
"./types",
|
|
"./node_modules/@types",
|
|
"./node_modules"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vitest/globals",
|
|
"vite-plugin-compile-time/client"
|
|
]
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
}
|