mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-07 00:02:53 +08:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["es2015", "es2017", "dom"],
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"outDir": "./bin/.ts",
|
|
"rootDir": "./",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"cc.decorator": [
|
|
"cocos/core/data/decorators/index.ts"
|
|
]
|
|
},
|
|
"types": [
|
|
"./@types/globals",
|
|
"./@types/consts",
|
|
"./@types/jsb",
|
|
"./@types/editor-extends",
|
|
"./@types/webGL.extras",
|
|
"./@types/webGL2.extras",
|
|
"./node_modules/@cocos/cannon/CANNON",
|
|
"./node_modules/@cocos/bullet/bullet",
|
|
"./node_modules/@cocos/physx/PhysX",
|
|
"./node_modules/@types/jest/index",
|
|
|
|
// pal
|
|
"./@types/pal/system-info",
|
|
"./@types/pal/screen-adapter",
|
|
"./@types/pal/minigame",
|
|
"./@types/pal/audio",
|
|
"./@types/pal/input"
|
|
]
|
|
},
|
|
"include": [
|
|
"exports/**/*.ts",
|
|
"typedoc-index.ts",
|
|
"pal/**/*.ts"
|
|
]
|
|
}
|