path-finding-2d
Version:
Fast 2D pathfinding library using triangulated navmesh
32 lines • 682 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": [
"ES2020"
],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": [
"node"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"./*.svg",
"./example-visual.js",
"./visualizer.js",
"./.gitattributes",
]
}