39 lines
789 B
JSON
39 lines
789 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015",
|
|
"module": "ES2015",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"lib": ["ES2015", "DOM"],
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"db://assets/*": ["assets/*"]
|
|
},
|
|
"types": [
|
|
"@cocos/creator-types/editor",
|
|
"@cocos/creator-types/engine"
|
|
]
|
|
},
|
|
"include": [
|
|
"assets/**/*.ts",
|
|
"extensions/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"library",
|
|
"local",
|
|
"temp",
|
|
"profiles"
|
|
]
|
|
}
|