|
@@ -2,24 +2,25 @@
|
|
|
"compilerOptions": {
|
|
|
"target": "es5",
|
|
|
"module": "commonjs",
|
|
|
- "noResolve": false,
|
|
|
- "noImplicitAny": false,
|
|
|
- "strictNullChecks": true,
|
|
|
- "removeComments": true,
|
|
|
- "preserveConstEnums": true,
|
|
|
- "sourceMap": true,
|
|
|
+ "declaration": true,
|
|
|
"experimentalDecorators": true,
|
|
|
- "isolatedModules": false,
|
|
|
- "declaration": false,
|
|
|
+ "emitDecoratorMetadata": true,
|
|
|
+ "moduleResolution": "node",
|
|
|
+ "strictNullChecks": true,
|
|
|
+ "noImplicitAny": false,
|
|
|
+ "noFallthroughCasesInSwitch": true,
|
|
|
+ "inlineSourceMap": true,
|
|
|
"lib": [
|
|
|
+ "es5",
|
|
|
"dom",
|
|
|
"es2015.promise",
|
|
|
- "es5"
|
|
|
- ],
|
|
|
- "types": [
|
|
|
- "node"
|
|
|
+ "es2015.collection",
|
|
|
+ "es2015.iterable"
|
|
|
],
|
|
|
+ "skipDefaultLibCheck": true,
|
|
|
+ "skipLibCheck": true,
|
|
|
"baseUrl": "./src/",
|
|
|
+ "rootDir": "./",
|
|
|
"paths": {
|
|
|
"babylonjs": [
|
|
|
"../../../../dist/preview release/babylon.d.ts"
|
|
@@ -29,6 +30,9 @@
|
|
|
],
|
|
|
"babylonjs-gltf2interface": [
|
|
|
"../../../../dist/babylon.glTF2Interface.d.ts"
|
|
|
+ ],
|
|
|
+ "babylonjs-viewer-assets": [
|
|
|
+ "../../src/assets/"
|
|
|
]
|
|
|
},
|
|
|
},
|