mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-03-27 01:44:21 +08:00
42 lines
1.2 KiB
JSON
Executable File
42 lines
1.2 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/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["jest", "vitest/globals", "chrome", "@emotion/react/types/css-prop"]
|
|
},
|
|
"include": ["./src/**/*", "./tests/**/*", "./tests-legacy/**/*", "./scripts-ts/**/*"],
|
|
"exclude": ["test-app"]
|
|
}
|