next/tsconfig.json
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 0898a622eb
fix(typing): augment node types (kinda)
do some finagling to shut typescript up about "staging" being an invalid value for `process.env.NODE_ENV`
2024-12-09 15:55:05 -05:00

30 lines
601 B
JSON

{
"extends": "./.nuxt/tsconfig.json",
// https://nuxt.com/docs/guide/concepts/typescript
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"noImplicitAny": false,
"noImplicitThis": false,
"verbatimModuleSyntax": false,
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true,
"types": [
"./typings/fuck-you.ts",
"./typings/*.d.ts"
],
"typeRoots": [
"typings/**/*.d.ts",
"typings"
]
},
"exclude": [
"**/node_modules/next/**/*.d.ts"
],
"include": [
"typings/**/*.d.ts",
"typings/node-ext.d.ts",
"nuxt.config.ts"
]
}