bytemd/tsconfig-base.json

18 lines
386 B
JSON

{
"compilerOptions": {
"skipLibCheck": true,
"incremental": true,
"target": "ES2019",
"module": "ESNext",
"jsx": "react",
"declaration": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"composite": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"exclude": ["**/__tests__"]
}