mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
26 lines
591 B
JSON
26 lines
591 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "system",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"preserveConstEnums": true,
|
|
"outFile": "./bin/game.js",
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"lib": [
|
|
"dom",
|
|
"scripthost",
|
|
"es5"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/game.ts",
|
|
"../../../types/phaser.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"../../../node_modules/@types"
|
|
]
|
|
}
|