clear-wallet/tsconfig.json

42 lines
698 B
JSON
Raw Permalink Normal View History

2022-08-25 22:39:02 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2024-01-24 00:48:42 +00:00
"sourceMap": false,
2022-08-25 22:39:02 +00:00
"baseUrl": ".",
"types": [
2022-10-07 17:07:59 +00:00
"chrome",
"jest",
"node"
2022-08-25 22:39:02 +00:00
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
2022-10-07 17:07:59 +00:00
"exclude": [
2022-08-25 22:39:02 +00:00
"node_modules"
]
}