Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
fix scss types
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Oct 22, 2020
1 parent 1b1abb0 commit 1771d8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "esnext",
"moduleResolution": "node",
"lib": ["es2017", "dom"],
"typeRoots": ["./node_modules/@types"],
"typeRoots": ["./types", "./node_modules/@types"],
"jsx": "react",
"baseUrl": "./src",
"allowSyntheticDefaultImports": true,
Expand All @@ -29,6 +29,6 @@
"emitDecoratorMetadata": true
},
"types": ["node"],
"include": ["src/**/*"],
"include": ["src/**/*", "types/*"],
"exclude": ["node_modules", "dist"]
}
6 changes: 6 additions & 0 deletions types/typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare module '*.json';
declare module '*.css';
declare module '*.scss';
declare module '*.md';

type BigInt = string;

0 comments on commit 1771d8f

Please sign in to comment.