mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
[ts] Added canvas backend stub
This commit is contained in:
parent
6d041c8229
commit
3b90df58a5
@ -3,4 +3,5 @@ set -e -x
|
|||||||
tsc -p tsconfig.json
|
tsc -p tsconfig.json
|
||||||
tsc -p tsconfig.core.json
|
tsc -p tsconfig.core.json
|
||||||
tsc -p tsconfig.webgl.json
|
tsc -p tsconfig.webgl.json
|
||||||
|
tsc -p tsconfig.canvas.json
|
||||||
tsc -p tsconfig.widget.json
|
tsc -p tsconfig.widget.json
|
||||||
23
spine-ts/tsconfig.canvas.json
Normal file
23
spine-ts/tsconfig.canvas.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "none",
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"removeComments": false,
|
||||||
|
"preserveConstEnums": true,
|
||||||
|
"outFile": "build/spine-canvas.js",
|
||||||
|
"sourceMap": true,
|
||||||
|
"declaration": true
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"core/src/**/*",
|
||||||
|
"canvas/src/**/*"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"webgl/src/*.ts",
|
||||||
|
"widget/src/*.ts",
|
||||||
|
"build",
|
||||||
|
"build/*.d.ts",
|
||||||
|
"build/*.js",
|
||||||
|
"build/*.js.map"
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user