19 lines
352 B
JSON
19 lines
352 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"outDir": "./dist",
|
|
"target": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true
|
|
}
|
|
}
|
|
|