mirror of
https://github.com/jamescliffordspratt/macros.git
synced 2026-07-22 05:46:53 +00:00
23 lines
470 B
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"]
|
|
}
|