forked from cocos/cocos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.03 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
{
"compilerOptions": {
"target": "es6",
"lib": ["es2015", "es2017", "dom"],
"module": "commonjs",
"sourceMap": true,
"outDir": "./bin/.ts",
"rootDir": "./",
"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/editor-extends",
"./@types/wx",
"./@types/global-adapter",
"./@types/webGL.extras",
"./@types/webGL2.extras",
"./node_modules/@cocos/cannon/CANNON",
"./node_modules/@cocos/ammo/Ammo",
"./node_modules/@types/jest/index"
]
},
"include": [
"exports/**/*.ts",
"editor/exports/**/*.ts",
"index.ts"
],
"exclude": [
"**/*.jsb.ts"
]
}