pathfinder/demo/client/tsconfig.json

26 lines
506 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",
"webgl-ext"
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"
]
}