mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 17:53:19 +08:00
50 lines
1.3 KiB
JSON
Executable File
50 lines
1.3 KiB
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"jsx": "react-jsx",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"noEmit": true,
|
|
"importHelpers": true,
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@assets/*": ["../public/assets/*"],
|
|
"@shared/*": ["shared/*"],
|
|
"@background/*": ["background/*"],
|
|
"@content-scripts/*": ["content-scripts/*"],
|
|
"@inpage/*": ["inpage/*"],
|
|
"@app/*": ["app/*"],
|
|
"@tests/*": ["../tests/*"],
|
|
"@tests-legacy/*": ["../tests-legacy/*"],
|
|
"leaf-styles/*": ["../leaf-styles/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["jest", "vitest/globals", "chrome"]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./tests/**/*",
|
|
"./tests-legacy/**/*",
|
|
"./scripts-ts/**/*",
|
|
"leaf-styles",
|
|
"theme"
|
|
],
|
|
"exclude": ["test-app"]
|
|
}
|