Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ declare module '*.ttf' {
export default value;
}

declare module '*.css';
declare module 'moment/locale/*';

declare var __DEV__: boolean;
declare var __CONF__: any;
declare var __THEME__: string;
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"stream-browserify": "^3.0.0",
"style-loader": "^4.0.0",
"styled-components": "^6.3.11",
"typescript": "^5.0.0",
"typescript": "^6.0.2",
"util": "^0.12.5",
"webpack": "^5.105.3",
"webpack-cli": "^7.0.2",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"noImplicitAny": false,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true
"noEmit": true,
"ignoreDeprecations": "6.0"
},
"include": ["src/**/*", "global.d.ts"],
"exclude": ["node_modules", "functions"]
Expand Down
Loading