Skip to content

Commit

Permalink
types to @types (#64)
Browse files Browse the repository at this point in the history
* types to @types

* fix types import
  • Loading branch information
omeraplak committed Jan 14, 2021
1 parent 523fed7 commit db9c0cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/saofile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import validate from "validate-npm-package-name";
import { exec } from "child_process";
import { promisify } from "util";

import { GeneratorConfig, Action } from "../types/sao";
import { GeneratorConfig, Action } from "../@types/sao";
import {
mergePackages,
concatExtend,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
] /* Type declaration files to be included in compilation. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"resolveJsonModule": true,
"typeRoots": ["types", "node_modules/@types"],
"typeRoots": ["node_modules/@types", "@types"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
Expand Down

0 comments on commit db9c0cb

Please sign in to comment.