Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration. Co-authored-by: Cursor <cursoragent@cursor.com>
36 lines
807 B
JSON
36 lines
807 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ES2017",
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2015",
|
|
"ES2016",
|
|
"ES2017",
|
|
"ES2018",
|
|
"ES2019",
|
|
"ES2020",
|
|
"ES2021",
|
|
"ESNext"
|
|
],
|
|
"rootDir": "./assets",
|
|
"declaration": true,
|
|
"declarationDir": "../@types/runtime",
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["../@types"],
|
|
"types": [
|
|
"intl",
|
|
"@cocos/creator-types/editor",
|
|
"@cocos/creator-types/engine"
|
|
],
|
|
},
|
|
"exclude": [
|
|
"../@types/**/*"
|
|
],
|
|
}
|