soapbox/tsconfig.json

27 wiersze
561 B
JSON
Czysty Zwykły widok Historia

{
"compilerOptions": {
"baseUrl": "app/",
"outDir": "build/",
"sourceMap": true,
"strict": true,
2023-09-13 17:04:17 +00:00
"module": "ESNext",
"lib": ["ESNext", "DOM", "WebWorker"],
"target": "ESNext",
"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-13 17:04:17 +00:00
"typeRoots": [ "./types", "./node_modules/@types"],
"types": [
"vite/client",
"vite-plugin-compile-time/client"
]
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
2022-07-06 16:26:44 +00:00
}
}