pathfinder/demo/client/tsconfig.json

21 lines
385 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": [
"node"
],
"typeRoots": [
"node_modules/@types"
],
2017-08-12 00:26:25 -04:00
"sourceMap": true,
"strictNullChecks": true,
"noImplicitAny": true
2017-08-08 14:23:30 -04:00
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}