jamescliffordspratt_macros/tsconfig.json

23 lines
470 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ES2020", "DOM"],
"jsx": "react",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"skipLibCheck": true,
"outDir": "./",
"rootDir": "src",
"importHelpers": true,
"baseUrl": "src",
"paths": {
"@/*": ["*"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}