kunpolibrary/tsconfig.json
2025-03-07 16:57:26 +08:00

27 lines
628 B
JSON

{
"compilerOptions": {
"target": "es6", //
"module": "commonjs", //
"experimentalDecorators": true, // 启用ES装饰器。
"strict": true,
"strictNullChecks": false,
"moduleResolution": "Node",
"skipLibCheck": true,
"esModuleInterop": true,
"stripInternal": true,
"types": [
"@cocos/creator-types/engine",
"@cocos/creator-types/editor",
]
},
"include": [
"./src/**/*"
// "libs"
],
// 排除
"exclude": [
"node_modules",
"dist",
"build"
]
}