[ts] Refactored tsconfigs

This commit is contained in:
badlogic 2016-08-17 10:49:35 +02:00
parent 22cc0993f7
commit 88a3a52e94
8 changed files with 6767 additions and 0 deletions

View File

@ -4,4 +4,5 @@ tsc -p tsconfig.json
tsc -p tsconfig.core.json
tsc -p tsconfig.webgl.json
tsc -p tsconfig.canvas.json
tsc -p tsconfig.threejs.json
tsc -p tsconfig.widget.json

6740
spine-ts/threejs/src/three.d.ts vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -15,6 +15,7 @@
"exclude": [
"webgl",
"widget",
"threejs",
"build"
]
}

View File

@ -14,6 +14,7 @@
"exclude": [
"webgl",
"widget",
"threejs",
"build"
]
}

View File

@ -12,6 +12,7 @@
"core/src/**/*",
"canvas/src/**/*",
"webgl/src/**/*",
"threejs/src/**/*",
"widget/src/**/*"
],
"exclude": [

View 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"
]
}

View File

@ -15,6 +15,7 @@
"exclude": [
"canvas",
"widget",
"threejs",
"build"
]
}

View File

@ -15,6 +15,7 @@
],
"exclude": [
"canvas",
"threejs",
"build"
]
}