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",
|
2025-03-29 10:54:49 +08:00
|
|
|
"./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"
|
|
|
|
]
|
|
|
|
}
|