22 lines
461 B
JSON
22 lines
461 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2017",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": ["es2017", "dom"],
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|