Files
tower/tsconfig.json

34 lines
743 B
JSON
Raw Normal View History

2021-05-08 12:07:40 -07:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
2021-05-08 13:00:59 -07:00
"outDir": "js",
2021-05-08 12:13:14 -07:00
"sourceMap": true,
2021-05-08 13:00:59 -07:00
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2021-05-08 20:30:37 +00:00
"strictNullChecks": true
2021-05-08 12:07:40 -07:00
},
"files": [
2021-05-11 05:28:20 +00:00
"ts/animatable_tile.ts",
"ts/animatable_tile_factory.ts",
2021-05-09 04:58:29 +00:00
"ts/grid.ts",
2021-05-11 02:57:17 +00:00
"ts/layered_tile.ts",
2021-05-11 02:21:23 +00:00
"ts/layered_tile_factory.ts",
2021-05-11 02:57:17 +00:00
"ts/layer.ts",
2021-05-11 05:37:08 +00:00
"ts/projectile_tile_factory.ts",
2021-05-12 04:48:16 +00:00
"ts/sequence_tile.ts",
"ts/sequence_tile_factory.ts",
2021-05-11 02:57:17 +00:00
"ts/simple_tile.ts",
"ts/simple_tile_factory.ts",
"ts/tile.ts",
2021-05-11 02:21:23 +00:00
"ts/tile_factory.ts",
2021-05-09 04:58:29 +00:00
"ts/tiles.ts",
"ts/tower.ts"
2021-05-08 12:07:40 -07:00
]
}