2021-04-14 09:45:18 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["dom", "es2017"],
|
|
|
|
"sourceMap": true,
|
|
|
|
"noEmitHelpers": true,
|
2021-05-25 14:32:53 +00:00
|
|
|
"importHelpers": false, // Must be false to create custom android componentt
|
2021-04-14 09:45:18 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"~/*": ["app/*"],
|
|
|
|
"@/*": ["app/*"]
|
|
|
|
},
|
|
|
|
"typeRoots": ["types"],
|
|
|
|
"types": ["node"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
|
|
|
"include": ["app", "types"],
|
|
|
|
"exclude": ["node_modules", "platforms"]
|
|
|
|
}
|