2022-09-13 01:33:24 +00:00
|
|
|
{
|
2022-11-24 19:36:41 +00:00
|
|
|
"compilerOptions": {
|
2023-10-12 05:56:53 +00:00
|
|
|
"lib": [
|
2023-10-20 02:12:07 +00:00
|
|
|
"DOM",
|
2023-10-20 02:22:29 +00:00
|
|
|
"ES2017",
|
|
|
|
"WebWorker"
|
2023-10-12 05:56:53 +00:00
|
|
|
],
|
2023-10-20 02:12:07 +00:00
|
|
|
"target": "ES2017",
|
|
|
|
"module": "ES2020",
|
2022-11-24 19:36:41 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
2022-12-10 18:59:36 +00:00
|
|
|
"noImplicitThis": true,
|
2023-10-12 05:56:53 +00:00
|
|
|
"noImplicitAny": true,
|
2023-04-19 02:19:05 +00:00
|
|
|
"esModuleInterop": true,
|
2023-10-29 21:10:56 +00:00
|
|
|
"strictNullChecks": true,
|
2023-10-30 00:38:54 +00:00
|
|
|
"alwaysStrict": true,
|
2023-10-30 00:30:11 +00:00
|
|
|
"incremental": true,
|
2023-10-30 00:54:53 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
2023-10-30 01:32:00 +00:00
|
|
|
"skipLibCheck": true,
|
2023-10-30 02:21:13 +00:00
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
2023-10-29 21:10:56 +00:00
|
|
|
"paths": {
|
|
|
|
"@services/*": [
|
|
|
|
"./src/services/*"
|
|
|
|
],
|
|
|
|
"@assets": [
|
|
|
|
"./src/assets"
|
|
|
|
],
|
|
|
|
"@components/*": [
|
|
|
|
"./src/components/*"
|
|
|
|
],
|
|
|
|
"@mixins/*": [
|
|
|
|
"./src/mixins/*"
|
|
|
|
],
|
|
|
|
"@native": [
|
|
|
|
"./src/native",
|
|
|
|
"./src/native/*"
|
|
|
|
]
|
|
|
|
}
|
2022-12-10 20:31:17 +00:00
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"target": 2.7
|
2023-10-20 02:21:09 +00:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
2023-10-29 20:14:28 +00:00
|
|
|
"module": "CommonJS"
|
2023-10-20 02:21:09 +00:00
|
|
|
}
|
2023-10-29 20:14:28 +00:00
|
|
|
}
|
2023-10-12 05:56:53 +00:00
|
|
|
}
|