ReactSSR/tsconfig.json

37 lines
651 B
JSON
Raw Permalink Normal View History

2023-08-31 07:34:56 +00:00
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
},
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
],
"ts-node": {
"esm": true
}
}