mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-06 07:38:54 +08:00
* support @types/cc-ambient-types * optimize build workflow * fix compile-native-ts workflow * fix build native ts
36 lines
802 B
JSON
36 lines
802 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["es2015", "es2017", "dom"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "Node16",
|
|
"sourceMap": true,
|
|
"outDir": "./bin/.ts",
|
|
"rootDir": "./",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"preserveSymlinks": false,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"cc.decorator": [
|
|
"cocos/core/data/decorators/index.ts"
|
|
]
|
|
},
|
|
"types": [
|
|
"cc-ambient-types",
|
|
"./node_modules/@types/jest/index"
|
|
]
|
|
},
|
|
"include": [
|
|
"exports/**/*.ts",
|
|
"typedoc-index.ts",
|
|
"pal/**/*.ts"
|
|
]
|
|
}
|