Files
tower/tsconfig.json

14 lines
209 B
JSON
Raw Normal View History

2021-05-08 12:07:40 -07:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"noImplicitAny": true,
2021-05-08 12:13:14 -07:00
"sourceMap": true,
"outDir": "js"
2021-05-08 12:07:40 -07:00
},
"files": [
2021-05-08 12:13:14 -07:00
"src/tower.ts",
"src/tower_map.ts"
2021-05-08 12:07:40 -07:00
]
}