forked from GitHub/gf-core
Add generated gflib.js under typescript/js. Add deprecation notice in javascript.
This commit is contained in:
7
src/runtime/javascript/DEPRECATED.md
Normal file
7
src/runtime/javascript/DEPRECATED.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# Deprecation notice
|
||||||
|
|
||||||
|
As of June 2019, this JavaScript version of the GF runtime is considered deprecated,
|
||||||
|
in favour of the TypeScript version in `../typescript/gflib.ts`.
|
||||||
|
|
||||||
|
If you don't want/need TypeScript and are just looking for a ready-to-use JavaScript version,
|
||||||
|
see `../typescript/js/gflib.js` which is generated directly from the TypeScript version.
|
||||||
1
src/runtime/typescript/.gitignore
vendored
1
src/runtime/typescript/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
*.js
|
|
||||||
1114
src/runtime/typescript/js/gflib.js
Normal file
1114
src/runtime/typescript/js/gflib.js
Normal file
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,9 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "none",
|
"module": "none",
|
||||||
"target": "es3",
|
"target": "es3",
|
||||||
"noImplicitAny": true
|
"noImplicitAny": true,
|
||||||
|
"removeComments": true,
|
||||||
|
"outDir": "js"
|
||||||
},
|
},
|
||||||
"compileOnSave": true
|
"compileOnSave": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user