-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update TypeScript config and revise package metadata
Refined `tsconfig.json` for stricter typing and compatibility by modifying compiler options and file inclusion. Updated `package.json` to replace the `author` field with an `owners` array for more detailed contributor metadata.
- Loading branch information
1 parent
bc64ab0
commit 10df321
Showing
2 changed files
with
23 additions
and
18 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
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 |
---|---|---|
@@ -1,18 +1,20 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES5", | ||
"module": "ES6", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"baseUrl": ".", | ||
"typeRoots": ["./@types"], | ||
"allowJs": true, | ||
"checkJs": false, | ||
"noEmit": true | ||
"module": "commonjs", | ||
"lib": [ | ||
"es6", | ||
"dom" | ||
], | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"strictNullChecks": true, | ||
"strictFunctionTypes": true, | ||
"types": [], | ||
"noEmit": true, | ||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"include": [ | ||
"./src/**/*", | ||
"./@types/**/*" | ||
"files": [ | ||
"./@types/index.d.ts", | ||
"./@types/natural_js-tests.ts" | ||
] | ||
} | ||
} |