2023-09-23 15:58:51 -04:00
|
|
|
{
|
2023-12-29 12:44:19 -05:00
|
|
|
"extends": "./.nuxt/tsconfig.json",
|
2024-04-02 01:21:13 -04:00
|
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
2023-10-03 01:20:29 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2024-04-02 01:21:13 -04:00
|
|
|
"esModuleInterop": true,
|
2023-10-03 01:20:29 -04:00
|
|
|
"noImplicitAny": false,
|
2023-12-09 17:45:23 -05:00
|
|
|
"noImplicitThis": false,
|
2024-04-02 01:21:13 -04:00
|
|
|
"verbatimModuleSyntax": false,
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2024-12-09 15:55:05 -05:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"types": [
|
|
|
|
"./typings/fuck-you.ts",
|
|
|
|
"./typings/*.d.ts"
|
|
|
|
],
|
|
|
|
"typeRoots": [
|
|
|
|
"typings/**/*.d.ts",
|
|
|
|
"typings"
|
|
|
|
]
|
2024-04-02 01:21:13 -04:00
|
|
|
},
|
2024-12-09 15:55:05 -05:00
|
|
|
"exclude": [
|
|
|
|
"**/node_modules/next/**/*.d.ts"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"typings/**/*.d.ts",
|
|
|
|
"typings/node-ext.d.ts",
|
|
|
|
"nuxt.config.ts"
|
|
|
|
]
|
2023-09-23 15:58:51 -04:00
|
|
|
}
|