kunpolibrary/tsconfig.json

30 lines
744 B
JSON
Raw Permalink Normal View History

2025-02-20 11:27:28 +08:00
{
"compilerOptions": {
"target": "es6", //
2025-03-06 18:48:50 +08:00
"module": "commonjs", //
2025-02-20 11:27:28 +08:00
"experimentalDecorators": true, // 启用ES装饰器。
"strict": true,
"strictNullChecks": false,
"moduleResolution": "Node",
"skipLibCheck": true,
"esModuleInterop": true,
2025-03-07 16:02:00 +08:00
"stripInternal": true,
2025-02-20 11:27:28 +08:00
"types": [
"@cocos/creator-types/engine",
"@cocos/creator-types/editor",
"./libs/lib.wx.api.d.ts",
"./libs/lib.ali.api.d.ts",
"@douyin-microapp/typings"
2025-02-20 11:27:28 +08:00
]
},
"include": [
"./src/**/*"
// "libs"
],
// 排除
"exclude": [
"node_modules",
"dist",
"build"
]
}