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, |
||||
"include": ["./src"], |
||||
"extends": "../../tsconfig.json", |
||||
"compilerOptions": { |
||||
"baseUrl": "./src", |
||||
"outDir": "./dist", |
||||
"sourceMap": true, |
||||
"declaration": true, |
||||
"types": ["node"], |
||||
"module": "commonjs", |
||||
"strict": true, |
||||
"noImplicitAny": false, |
||||
"strictPropertyInitialization": false, |
||||
"experimentalDecorators": true, |
||||
"target": "es5", |
||||
"typeRoots": ["node_modules/@types"], |
||||
"lib": ["dom", "es2018"], |
||||
"paths": { |
||||
"remix-url-resolver": ["./"] |
||||
} |
||||
} |
||||
} |
||||
"esModuleInterop": true |
||||
}, |
||||
"include": ["**/*.ts"] |
||||
} |
||||
|
@ -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