29 lines
717 B
JSON
29 lines
717 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@components": ["./components"],
|
|
"@components/*": ["./components/*"],
|
|
"@pages": ["./pages"],
|
|
"@pages/*": ["./pages/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|