Files
tower/tsconfig.json

23 lines
458 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,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true
2021-05-08 12:07:40 -07:00
},
"files": [
2021-05-08 13:00:59 -07:00
"ts/tower.ts",
"ts/tower_map.ts"
2021-05-08 12:07:40 -07:00
]
}