-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.3 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
"target": "es6",
"module": "es6",
"outDir": "./lib",
"declaration": true,
"moduleResolution": "node",
"declarationDir": "./ref",
"lib":[
"dom",
"es2017"
]
},
"filesGlob": [
"./src/**/*.ts"
],
"files": [
"./src/Accessor/Accessor.ts",
"./src/Components/GLTFJointComponent.ts",
"./src/Components/GLTFModelComponent.ts",
"./src/index.ts",
"./src/main.ts",
"./src/Parser/ConstantConverter.ts",
"./src/Parser/Parser.ts",
"./src/Parser/Schema/GLTF.ts",
"./src/Parser/Schema/GLTFAccessor.ts",
"./src/Parser/Schema/GLTFAnimation.ts",
"./src/Parser/Schema/GLTFAnimationChannel.ts",
"./src/Parser/Schema/GLTFAnimationSampler.ts",
"./src/Parser/Schema/GLTFBuffer.ts",
"./src/Parser/Schema/GLTFBufferView.ts",
"./src/Parser/Schema/GLTFImage.ts",
"./src/Parser/Schema/GLTFMaterial.ts",
"./src/Parser/Schema/GLTFMesh.ts",
"./src/Parser/Schema/GLTFNode.ts",
"./src/Parser/Schema/GLTFSampler.ts",
"./src/Parser/Schema/GLTFShader.ts",
"./src/Parser/Schema/GLTFSkin.ts",
"./src/Parser/Schema/GLTFTechnique.ts",
"./src/Parser/Schema/GLTFTexture.ts",
"./src/raw.d.ts",
"./src/Util/ResourceResolver.ts"
],
"exclude": [],
"atom": {
"rewriteTsconfig": true
}
}