-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TypeScript typings for Natural-JS library
Introduces TypeScript type definitions for the Natural-JS library, including validation, formatting, data binding, and UI components. This commit improves developer experience by enabling type checking and IntelliSense support in development environments.
- Loading branch information
1 parent
1905448
commit 73e01b7
Showing
26 changed files
with
10,868 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "natural_js_boot", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.html", | ||
"scripts": { | ||
"build": "tsc", | ||
"build:watch": "tsc -w", | ||
"dev": "NODE_ENV=dev nodemon --watch src/ --delay 500ms --exec ts-node src/start.ts", | ||
"start:dev": "NODE_ENV=dev ts-node-dev --respawn --transpile-only src/start.ts", | ||
"start": "NODE_ENV=production node build/start.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bbalganjjm/natural_js.git" | ||
}, | ||
"private": true, | ||
"dependencies": { | ||
"@types/jquery": "^3.5.32" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* | ||
!**/*.d.ts | ||
!**/*.d.cts | ||
!**/*.d.mts | ||
!**/*.d.*.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/// <reference types="jquery" /> | ||
/// <reference path="natural.core.d.ts" /> | ||
/// <reference path="natural.core.misc.d.ts" /> | ||
/// <reference path="natural.architecture.d.ts" /> | ||
/// <reference path="natural.architecture.misc.d.ts" /> | ||
/// <reference path="natural.data.d.ts" /> | ||
/// <reference path="natural.data.misc.d.ts" /> | ||
/// <reference path="natural.ui.d.ts" /> | ||
/// <reference path="natural.ui.misc.d.ts" /> | ||
/// <reference path="natural.ui.shell.d.ts" /> | ||
/// <reference path="natural.ui.shell.misc.d.ts" /> | ||
/// <reference path="natural.template.d.ts" /> | ||
/// <reference path="natural.template.misc.d.ts" /> | ||
/// <reference path="natural.code.d.ts" /> | ||
/// <reference path="natural.code.misc.d.ts" /> | ||
/// <reference path="natural.js.d.ts" /> | ||
|
||
export = N; |
Oops, something went wrong.