16 lines
338 B
JSON
16 lines
338 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "Preserve",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|