mirror of
https://github.com/andatoshiki/toshiki-home-nuxt3.git
synced 2026-06-06 01:46:29 +00:00
9 lines
251 B
TypeScript
Executable File
9 lines
251 B
TypeScript
Executable File
import { Options } from '@nuxt/typescript-build'
|
|
|
|
const TypescriptBuild: Options = {
|
|
// Disabling type checking since we have it on our editor and don't want it to slow down the build process
|
|
typeCheck: false
|
|
}
|
|
|
|
export default TypescriptBuild
|