mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
36b203f33a
* Changes * More changes * fix some var names * Fix door mask * Add tilemap back * Begin landscapes * Add vite * Add landscapes * Add texture caching * More changes * Fix flipped plane material cells * Changes * More landscape changes * Fix PlaneMaterialCell tiling * Add more caching * Destroy BaseRenderTexture * Performance improvements * More improvements * More improvements * Cache mask pixels * Fix settings Co-authored-by: dank074 <torresefrain10@gmail.com>
36 lines
720 B
JSON
36 lines
720 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"outDir": "./dist",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"downlevelIteration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"target": "ES6",
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"module": "ES6",
|
|
"paths": {
|
|
"mini-signals": [
|
|
"node_modules/mini-signals/index.js"
|
|
]
|
|
},
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|