Skip to content

Commit

Permalink
ts: forgot to update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Oct 2, 2023
1 parent ec6bcfd commit 64160f8
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions generators/app/templates/typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"compilerOptions": {
"target": "es5",
"baseUrl": ".",
"paths": {
"openfl": ["node_modules/openfl/lib/openfl"],
"openfl/*": ["node_modules/openfl/lib/openfl/*"]
},
"lib": ["es2017", "dom"],
"sourceMap": true
},
"files": ["src/app.ts"]
}
"compilerOptions": {
"outDir": "dist",
"target": "es5",
"module": "CommonJS",
"moduleResolution": "node",
"paths": {
"openfl": ["./node_modules/openfl/lib/openfl"],
"openfl/*": ["./node_modules/openfl/lib/openfl/*"]
},
"sourceMap": true
}
}

0 comments on commit 64160f8

Please sign in to comment.