parent
24d5fa2e0a
commit
e209a82098
@ -0,0 +1,16 @@ |
|||||||
|
{ |
||||||
|
"extends": "../../.eslintrc", |
||||||
|
"rules": { |
||||||
|
"@typescript-eslint/no-var-requires": "off", |
||||||
|
"@typescript-eslint/no-explicit-any": "off", |
||||||
|
"@typescript-eslint/no-unused-vars": "off", |
||||||
|
"@typescript-eslint/explicit-module-boundary-types": "off" |
||||||
|
}, |
||||||
|
"env": { |
||||||
|
"browser": true, |
||||||
|
"amd": true, |
||||||
|
"node": true, |
||||||
|
"es6": true |
||||||
|
}, |
||||||
|
"ignorePatterns": ["!**/*"] |
||||||
|
} |
@ -1,21 +1,9 @@ |
|||||||
{ |
{ |
||||||
"compileOnSave": false, |
"extends": "../../tsconfig.json", |
||||||
"include": ["./src"], |
|
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
"baseUrl": "./src", |
"types": ["node"], |
||||||
"outDir": "./dist", |
|
||||||
"sourceMap": true, |
|
||||||
"declaration": true, |
|
||||||
"module": "commonjs", |
"module": "commonjs", |
||||||
"strict": true, |
"esModuleInterop": true |
||||||
"noImplicitAny": false, |
}, |
||||||
"strictPropertyInitialization": false, |
"include": ["**/*.ts"] |
||||||
"experimentalDecorators": true, |
|
||||||
"target": "es5", |
|
||||||
"typeRoots": ["node_modules/@types"], |
|
||||||
"lib": ["dom", "es2018"], |
|
||||||
"paths": { |
|
||||||
"remix-url-resolver": ["./"] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
@ -0,0 +1,16 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"module": "commonjs", |
||||||
|
"outDir": "../../dist/out-tsc", |
||||||
|
"declaration": true, |
||||||
|
"rootDir": "./src", |
||||||
|
"types": ["node"] |
||||||
|
}, |
||||||
|
"exclude": [ |
||||||
|
"**/*.spec.ts", |
||||||
|
"tests/" |
||||||
|
], |
||||||
|
"include": ["**/*.ts"] |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue