Skip to content

Commit

Permalink
Added VSCode files
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 29, 2015
1 parent acd8be6 commit c598cf1
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .settings/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"version": "0.1.0",
"configurations": [
{
"name": "Run Tests",
"type": "node",
"program": "node_modules/mocha/bin/mocha",
"stopOnEntry": false,
"args": ["--debug"],
"cwd": ".",
"runtimeExecutable": null,
"env": { }
},
{
"name": "Run Benchmark",
"type": "node",
"program": "benchmarks/mongodb.js",
"stopOnEntry": true,
"args": ["--debug"],
"cwd": ".",
"runtimeExecutable": null,
"env": { }
},
{
"name": "Attach",
"type": "node",
"address": "localhost",
"port": 5858
}
]
}
22 changes: 22 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"sourceMap": true
},
"files": [
"lib/Core.ts",
"lib/Cursor.ts",
"lib/Instance.ts",
"lib/Model.ts",
"lib/ModelCache.ts",
"lib/ModelHandlers.ts",
"lib/ModelHelpers.ts",
"lib/ModelSpecificInstance.ts",
"lib/cacheControllers/IDController.ts",
"lib/caches/MemoryCache.ts",
"lib/caches/NoOpCache.ts",
"lib/middleware/Express.ts",
"lib/utils/Omnom.ts"
]
}

0 comments on commit c598cf1

Please sign in to comment.