forked from cocos/cocos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (54 loc) · 1.43 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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,
"forceConsistentCasingInFileNames": 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/@types/jest/index",
// external types
"./native/external/emscripten/external-wasm",
"./native/external/emscripten/bullet/bullet",
"./native/external/emscripten/physx/physx",
"./native/external/emscripten/webgpu/webgpu",
"./native/external/emscripten/spine/spine",
// pal
"./@types/pal/system-info",
"./@types/pal/screen-adapter",
"./@types/pal/minigame",
"./@types/pal/audio",
"./@types/pal/input",
"./@types/pal/env",
"./@types/pal/pacer",
"./@types/pal/wasm",
]
},
"include": [
"exports/**/*.ts",
"typedoc-index.ts",
"pal/**/*.ts"
]
}