deckbrowser and overview
This commit is contained in:
parent
f080616eed
commit
de29b02089
2
Makefile
2
Makefile
@ -93,4 +93,4 @@ JSDEPS := $(patsubst ts/%.ts, web/%.js, $(TSDEPS))
|
|||||||
js: $(JSDEPS)
|
js: $(JSDEPS)
|
||||||
|
|
||||||
web/%.js: ts/%.ts
|
web/%.js: ts/%.ts
|
||||||
(cd ts && ./node_modules/.bin/tsc $(notdir $<) --outFile ../web/$(notdir $@))
|
(cd ts && ./node_modules/.bin/tsc lib/global.d.ts $(notdir $<) --outFile ../web/$(notdir $@))
|
||||||
|
1
ts/lib/global.d.ts
vendored
Normal file
1
ts/lib/global.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
declare function pycmd(cmd: string): any;
|
9
ts/package-lock.json
generated
9
ts/package-lock.json
generated
@ -13,6 +13,15 @@
|
|||||||
"@types/sizzle": "*"
|
"@types/sizzle": "*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@types/jqueryui": {
|
||||||
|
"version": "1.12.9",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/jqueryui/-/jqueryui-1.12.9.tgz",
|
||||||
|
"integrity": "sha512-bHE7BiG+5Sviy/eA9Npz5HHF3hv40XjaEbpYtSJPaNwuyxhSJ0qWlE8C5DgNMfobVOZ2aSTrM1iGDCGmvlbxOg==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"@types/jquery": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@types/mathjax": {
|
"@types/mathjax": {
|
||||||
"version": "0.0.36",
|
"version": "0.0.36",
|
||||||
"resolved": "https://registry.npmjs.org/@types/mathjax/-/mathjax-0.0.36.tgz",
|
"resolved": "https://registry.npmjs.org/@types/mathjax/-/mathjax-0.0.36.tgz",
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
"license": "AGPL-3.0-or-later",
|
"license": "AGPL-3.0-or-later",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jquery": "^3.3.31",
|
"@types/jquery": "^3.3.31",
|
||||||
|
"@types/jqueryui": "^1.12.9",
|
||||||
"@types/mathjax": "0.0.36",
|
"@types/mathjax": "0.0.36",
|
||||||
"typescript": "^3.7.3"
|
"typescript": "^3.7.3"
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"module": "commonjs",
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"target": "es6",
|
|
||||||
"noImplicitAny": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"sourceMap": false,
|
|
||||||
"baseUrl": ".",
|
|
||||||
"paths": {
|
|
||||||
"*": [
|
|
||||||
"node_modules/*",
|
|
||||||
"src/types/*"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"src/**/*"
|
|
||||||
]
|
|
||||||
}
|
|
2
web/.gitignore
vendored
2
web/.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
webview.js
|
webview.js
|
||||||
|
deckbrowser.js
|
||||||
|
overview.js
|
||||||
|
Loading…
Reference in New Issue
Block a user