22 lines
483 B
JSON
22 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"outDir": "build",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"incremental": true,
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|