Skip to content

Commit c681dc0

Browse files
committed
init: minimal typescript setup
0 parents  commit c681dc0

File tree

5 files changed

+31
-0
lines changed

5 files changed

+31
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
built/
2+
node_modules/

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "aql-js-andsorsnots",
3+
"version": "0.0.0",
4+
"license": "MIT",
5+
"devDependencies": {
6+
"typescript": "^3.9.5"
7+
}
8+
}

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export function buildQuery(query: any): any {}

tsconfig.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"outDir": "./built",
4+
"allowJs": true,
5+
"target": "es5",
6+
"declaration": true,
7+
"emitDeclarationOnly": true
8+
},
9+
"include": [
10+
"./src/**/*"
11+
]
12+
}

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
typescript@^3.9.5:
6+
version "3.9.5"
7+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36"
8+
integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==

0 commit comments

Comments
 (0)