boilerplate-frontend/tsconfig.json
2023-11-13 16:27:58 +01:00

22 lines
508 B
JSON

{
"compilerOptions": {
"strict": true,
"module": "ES2020",
"target": "ES2020",
// Doesn't apply to server/, see ts-node config down below and server/tsconfig.json
"moduleResolution": "Bundler",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client"],
"skipLibCheck": true,
"esModuleInterop": true
},
"ts-node": {
"transpileOnly": true,
"esm": true,
"compilerOptions": {
"module": "Node16",
"moduleResolution": "Node16"
}
}
}