web-backset.cn/tsconfig.json

13 lines
335 B
JSON
Raw Normal View History

2023-02-10 17:09:40 +08:00
{
"compilerOptions": {
"noImplicitAny": true, /* any*/
"strictNullChecks": true,
2023-02-24 00:34:24 +08:00
"esModuleInterop": true,
2023-02-10 17:09:40 +08:00
"baseUrl": ".",
"paths": {
"@backset/*": [
2023-02-10 17:09:40 +08:00
"packages/*/src" // packages/*/src/index.ts 作为入口文件常规操作
]
}
},
}