parent
21a393e26d
commit
8011bcad01
@ -1,25 +1,22 @@ |
|||||||
{ |
{ |
||||||
|
"extends": "../../tsconfig.json", |
||||||
"include": ["src", "index.ts"], |
"include": ["src", "index.ts"], |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
||||||
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
||||||
|
"types": ["node"], |
||||||
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
||||||
"sourceMap": true, /* Generates corresponding '.map' file. */ |
"sourceMap": true, /* Generates corresponding '.map' file. */ |
||||||
"outDir": "./dist", /* Redirect output structure to the directory. */ |
"outDir": "./dist", /* Redirect output structure to the directory. */ |
||||||
/* Strict Type-Checking Options */ |
/* Strict Type-Checking Options */ |
||||||
"strict": true, /* Enable all strict type-checking options. */ |
"strict": true, /* Enable all strict type-checking options. */ |
||||||
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ |
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ |
||||||
/* Module Resolution Options */ |
|
||||||
"baseUrl": "./src", /* Base directory to resolve non-absolute module names. */ |
|
||||||
"paths": { "remix-analyzer": ["./"] }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ |
|
||||||
"typeRoots": [ |
"typeRoots": [ |
||||||
"./@types", |
"./@types", |
||||||
"./node_modules/@types" |
"./node_modules/@types" |
||||||
], |
], |
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ |
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ |
||||||
/* Experimental Options */ |
|
||||||
"experimentalDecorators": false, /* Enables experimental support for ES7 decorators. */ |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
|
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./", |
||||||
|
"types": ["node"] |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./src", |
||||||
|
"types": ["node"] |
||||||
|
} |
||||||
|
} |
@ -1,25 +1,20 @@ |
|||||||
{ |
{ |
||||||
|
"extends": "../../tsconfig.json", |
||||||
"include": ["src", "index.ts"], |
"include": ["src", "index.ts"], |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
||||||
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
||||||
|
"types": ["node"], |
||||||
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
||||||
"sourceMap": true, /* Generates corresponding '.map' file. */ |
"sourceMap": true, /* Generates corresponding '.map' file. */ |
||||||
"outDir": "./dist", /* Redirect output structure to the directory. */ |
|
||||||
/* Strict Type-Checking Options */ |
/* Strict Type-Checking Options */ |
||||||
"strict": true, /* Enable all strict type-checking options. */ |
"strict": true, /* Enable all strict type-checking options. */ |
||||||
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ |
"noImplicitAny": false, |
||||||
/* Module Resolution Options */ |
|
||||||
"baseUrl": "./src", /* Base directory to resolve non-absolute module names. */ |
|
||||||
"paths": { "remix-solidity": ["./"] }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ |
|
||||||
"typeRoots": [ |
"typeRoots": [ |
||||||
"./@types", |
"./@types", |
||||||
"./node_modules/@types" |
"./node_modules/@types" |
||||||
], |
] |
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ |
|
||||||
/* Experimental Options */ |
|
||||||
"experimentalDecorators": false, /* Enables experimental support for ES7 decorators. */ |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
|
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./", |
||||||
|
"types": ["node"] |
||||||
|
} |
||||||
|
} |
@ -1,24 +1,19 @@ |
|||||||
{ |
{ |
||||||
|
"extends": "../../tsconfig.json", |
||||||
"include": ["src"], |
"include": ["src"], |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
"target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
||||||
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
"lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ |
||||||
|
"types": ["node"], |
||||||
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
||||||
"sourceMap": true, /* Generates corresponding '.map' file. */ |
"sourceMap": true, /* Generates corresponding '.map' file. */ |
||||||
"outDir": "./dist", /* Redirect output structure to the directory. */ |
|
||||||
/* Strict Type-Checking Options */ |
/* Strict Type-Checking Options */ |
||||||
"strict": true, /* Enable all strict type-checking options. */ |
"strict": true, /* Enable all strict type-checking options. */ |
||||||
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ |
"noImplicitAny": false, |
||||||
/* Module Resolution Options */ |
|
||||||
"baseUrl": "./src", /* Base directory to resolve non-absolute module names. */ |
|
||||||
"paths": { "remix-tests": ["./"] }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ |
|
||||||
"typeRoots": [ |
"typeRoots": [ |
||||||
"./@types", |
"./@types", |
||||||
"./node_modules/@types" |
"./node_modules/@types" |
||||||
], |
] |
||||||
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ |
|
||||||
/* Experimental Options */ |
|
||||||
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./src", |
||||||
|
"types": ["node"] |
||||||
|
} |
||||||
|
} |
@ -1,21 +1,17 @@ |
|||||||
{ |
{ |
||||||
|
"extends": "../../tsconfig.json", |
||||||
"compileOnSave": false, |
"compileOnSave": false, |
||||||
"include": ["./src"], |
"include": ["./src"], |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"baseUrl": "./src", |
|
||||||
"outDir": "./dist", |
|
||||||
"sourceMap": true, |
"sourceMap": true, |
||||||
"declaration": true, |
"declaration": true, |
||||||
"module": "commonjs", |
"module": "commonjs", |
||||||
"strict": true, |
"strict": true, |
||||||
"noImplicitAny": false, |
"noImplicitAny": false, |
||||||
"strictPropertyInitialization": false, |
"strictPropertyInitialization": false, |
||||||
"experimentalDecorators": true, |
|
||||||
"target": "es5", |
"target": "es5", |
||||||
"typeRoots": ["node_modules/@types"], |
"typeRoots": ["node_modules/@types"], |
||||||
"lib": ["dom", "es2018"], |
"lib": ["dom", "es2018"], |
||||||
"paths": { |
"types": ["node"], |
||||||
"remix-url-resolver": ["./"] |
|
||||||
} |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
@ -0,0 +1,10 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./src", |
||||||
|
"types": ["node"] |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue