mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
Remove <reference path="../xxx/xxx.d.ts"> from definitions files and replace it with import * as Xxx from "xxx" or <reference types="xxx"/>
This commit is contained in:
2
jsoneditor/jsoneditor.d.ts
vendored
2
jsoneditor/jsoneditor.d.ts
vendored
@@ -3,7 +3,7 @@
|
||||
// Definitions by: Alejandro Sánchez <https://github.com/alejo90>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
|
||||
/// <reference path="../ace/ace.d.ts" />
|
||||
/// <reference types="ace" />
|
||||
|
||||
declare module 'jsoneditor' {
|
||||
export interface JSONEditorNode {
|
||||
|
||||
19
jsoneditor/tsconfig.json
Normal file
19
jsoneditor/tsconfig.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"noImplicitAny": true,
|
||||
"strictNullChecks": false,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"jsoneditor.d.ts",
|
||||
"jsoneditor-tests.ts"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user