mirror of
https://github.com/zhigang1992/connect.git
synced 2026-01-13 17:02:50 +08:00
44 lines
805 B
JSON
44 lines
805 B
JSON
{
|
|
"include": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"composite": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"rootDir": "./src",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@stacks/connect": [
|
|
"../connect/src/index"
|
|
]
|
|
},
|
|
"outDir": "./dist/types"
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../connect"
|
|
}
|
|
]
|
|
}
|
|
|
|
|