Files
GDevelop/SharedLibs/TileMapHelper/tsconfig.json
T
D8H f871b64011 [TileMap] Collision mask object (#3313)
* The collision mask is read from the tile maps exported by Tiled 1.9+.
* Several collision masks can be used for instance to have platforms and ladders.
* Take a look to the wiki for more details https://wiki.gdevelop.io/gdevelop5/objects/tilemap
2022-07-13 15:12:12 +02:00

26 lines
629 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"noImplicitAny": true,
"outDir": "./dist/tsc",
"target": "ES5",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dts/",
"types" : [
"mocha",
"expect.js",
"offscreencanvas"
],
"lib": ["DOM", "ES5", "ES6"],
"esModuleInterop": false,
"downlevelIteration": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
},
"exclude": [
"node_modules"
]
}