finder-refferenct3/tsconfig.json

29 lines
712 B
JSON
Raw Permalink Normal View History

2024-10-31 02:37:08 +00:00
{
"compilerOptions": {
"target": "es6",
"module": "CommonJS",
"inlineSourceMap": false,
"outDir": "./dist",
"rootDir": "./source",
"allowJs": true,
"lib": [
"dom",
"es7",
"ES2017"
],
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": [
"@cocos/creator-types/editor/protected",
"@cocos/creator-types/editor/packages/builder/@types/public",
"@cocos/creator-types/editor/packages/builder/@types/public/global"
]
},
"exclude": [
"./dist"
],
"include": [
"./source"
]
}