Files
DefinitelyTyped/types/athenajs/tsconfig.json
Nicolas Ramz e48af07ef9 Added definitions for the athenajs npm package (#29326)
* ADDED: initial files, more work needed

* FIXED: more classes

* FIXED: some fixes to incorrect types so that gods has no errors

* IMPROVED: more strick tsconfig
FIXED: tslint.json typo in filename

* FIXED: npm test errors
ADDED: UMD global var AthenaJS
2018-10-01 21:24:20 -07:00

40 lines
819 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"noEmit": true,
"types": [],
"lib": [
"es5",
"es6",
"es2015.iterable",
"dom"
],
"module": "commonjs",
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/dom.ts",
"test/deferred.ts",
"test/game.ts",
"test/scene.ts",
"test/drawable.ts",
"test/simpletext.ts",
"test/paint.ts",
"test/bitmaptext.ts",
"test/sprite.ts",
"test/map.ts",
"test/tetris/tetris.ts",
"test/tetris/shape.ts",
"test/tetris/grid.ts",
"test/tetris/shape_behavior.ts",
"test/tetris/flash_lines.ts"
]
}