2019-05-08 22:23:57 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "system",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"outFile": "./bin/game.js",
|
2019-05-09 14:33:26 +00:00
|
|
|
"sourceMap": true,
|
2020-07-14 08:45:19 +00:00
|
|
|
"moduleResolution": "node",
|
2019-05-09 14:33:26 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"scripthost",
|
|
|
|
"es5"
|
|
|
|
]
|
2019-05-08 22:23:57 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2019-05-09 14:33:26 +00:00
|
|
|
"src/game.ts",
|
2019-05-08 22:23:57 +00:00
|
|
|
"../../../types/phaser.d.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
2020-07-14 08:45:19 +00:00
|
|
|
"node_modules",
|
|
|
|
"../../../node_modules/@types"
|
2019-05-08 22:23:57 +00:00
|
|
|
]
|
2020-07-14 08:45:19 +00:00
|
|
|
}
|