mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
[ts] Refactored tsconfigs
This commit is contained in:
parent
22cc0993f7
commit
88a3a52e94
@ -4,4 +4,5 @@ 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.canvas.json
|
||||||
|
tsc -p tsconfig.threejs.json
|
||||||
tsc -p tsconfig.widget.json
|
tsc -p tsconfig.widget.json
|
||||||
6740
spine-ts/threejs/src/three.d.ts
vendored
Normal file
6740
spine-ts/threejs/src/three.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@ -15,6 +15,7 @@
|
|||||||
"exclude": [
|
"exclude": [
|
||||||
"webgl",
|
"webgl",
|
||||||
"widget",
|
"widget",
|
||||||
|
"threejs",
|
||||||
"build"
|
"build"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -14,6 +14,7 @@
|
|||||||
"exclude": [
|
"exclude": [
|
||||||
"webgl",
|
"webgl",
|
||||||
"widget",
|
"widget",
|
||||||
|
"threejs",
|
||||||
"build"
|
"build"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -12,6 +12,7 @@
|
|||||||
"core/src/**/*",
|
"core/src/**/*",
|
||||||
"canvas/src/**/*",
|
"canvas/src/**/*",
|
||||||
"webgl/src/**/*",
|
"webgl/src/**/*",
|
||||||
|
"threejs/src/**/*",
|
||||||
"widget/src/**/*"
|
"widget/src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
|
|||||||
21
spine-ts/tsconfig.threejs.json
Normal file
21
spine-ts/tsconfig.threejs.json
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "none",
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"removeComments": true,
|
||||||
|
"preserveConstEnums": true,
|
||||||
|
"outFile": "build/spine-threejs.js",
|
||||||
|
"sourceMap": true,
|
||||||
|
"declaration": true
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"core/src/**/*",
|
||||||
|
"threejs/src/**/*"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"canvas",
|
||||||
|
"webgl",
|
||||||
|
"widget",
|
||||||
|
"build"
|
||||||
|
]
|
||||||
|
}
|
||||||
@ -15,6 +15,7 @@
|
|||||||
"exclude": [
|
"exclude": [
|
||||||
"canvas",
|
"canvas",
|
||||||
"widget",
|
"widget",
|
||||||
|
"threejs",
|
||||||
"build"
|
"build"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@ -15,6 +15,7 @@
|
|||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"canvas",
|
"canvas",
|
||||||
|
"threejs",
|
||||||
"build"
|
"build"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user