mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-04-04 10:41:04 +00:00
27 lines
628 B
JSON
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"
|
|
]
|
|
} |