pathfinder/demo/client/tsconfig.json

27 lines
531 B
JSON
Raw Normal View History

2017-08-08 14:23:30 -04:00
{
"compilerOptions": {
2017-08-13 16:39:51 -04:00
"target": "ES2017",
2017-08-08 14:23:30 -04:00
"module": "commonjs",
"types": [
"base64-js",
"gl-matrix",
"lodash",
"node",
"opentype.js",
2018-03-09 18:19:06 -05:00
"webgl-ext",
"webvr-api"
2017-08-08 14:23:30 -04:00
],
"typeRoots": [
"node_modules/@types"
],
2017-08-12 00:26:25 -04:00
"sourceMap": true,
"strict": true,
"allowUnreachableCode": true
2017-08-08 14:23:30 -04:00
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}