web-backset.cn/tsconfig.json
2023-02-24 00:34:24 +08:00

13 lines
335 B
JSON

{
"compilerOptions": {
"noImplicitAny": true, /* any*/
"strictNullChecks": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@backset/*": [
"packages/*/src" // packages/*/src/index.ts 作为入口文件常规操作
]
}
},
}