22 lines
467 B
JSON
22 lines
467 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES6",
|
||
|
"module": "CommonJS",
|
||
|
"esModuleInterop": true,
|
||
|
"moduleResolution": "Node",
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"outDir": "dist",
|
||
|
"importsNotUsedAsValues": "remove",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"forceConsistentCasingInFileNames": true
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|