2022-02-14 10:24:23 +07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-14 15:59:51 +07:00
|
|
|
"target": "es5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2022-02-14 16:15:32 +07:00
|
|
|
"sourceMap": true,
|
2022-02-14 15:59:51 +07:00
|
|
|
"outDir": "dist",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"lib": ["ES2015"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"experimentalDecorators": true,
|
2022-02-14 16:15:32 +07:00
|
|
|
"declaration": true,
|
2022-02-14 15:59:51 +07:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
}
|
2022-02-14 10:24:23 +07:00
|
|
|
},
|
2022-02-14 15:59:51 +07:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|