Files
GDevelop/SharedLibs/TileMapHelper/tsconfig.json
T
D8H 73642092bb Upgrade games 2D rendering engine (PixiJS) to version 7.3.0 (#5633)
* This opens the path to multiple performance improvements (faster WebGL rendering, and then WebGPU rendering) as well as optimised resources loading in the future.
2023-09-21 17:14:05 +02:00

27 lines
559 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"noImplicitAny": true,
"outDir": "./dist/tsc",
"target": "ES2017",
"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"
]
}