You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/tsconfig.json

27 lines
548 B

{
"compilerOptions": {
"baseUrl": "app/",
"outDir": "build/",
"sourceMap": true,
"strict": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"typeRoots": [ "./types", "./node_modules/@types"],
"types": [
"vite/client",
"vite-plugin-compile-time/client"
]
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}