mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-01-12 17:53:19 +08:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es2017", "dom"],
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"noEmit": false,
|
|
"importHelpers": true,
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@store/*": ["./store/*"],
|
|
"@store": ["./store/index"],
|
|
"@dev/*": ["./dev/*"],
|
|
"@components/*": ["./components/*"],
|
|
"@containers/*": ["./containers/*"],
|
|
"@common/*": ["./common/*"],
|
|
"@cards/*": ["./components/cards/*"],
|
|
"@tests/*": ["../../tests/*"],
|
|
"@tests-legacy/*": ["../../tests-legacy/*"]
|
|
},
|
|
"baseUrl": "./src",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./tests-legacy/**/*",
|
|
"./tests/**/*",
|
|
"./components/**/*",
|
|
"./common/**/*"
|
|
]
|
|
}
|