webamp/packages/skin-database/tsconfig.json
2025-12-29 15:32:03 -08:00

41 lines
920 B
JSON

{
"grats": {
"nullableByDefault": true,
"graphqlSchema": "./api/graphql/schema.graphql",
"tsSchema": "./api/graphql/schema.ts",
"strictSemanticNullability": true
},
"compilerOptions": {
"plugins": [
{
"name": "grats-ts-plugin"
},
{
"name": "next"
}
],
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"moduleResolution": "node",
"sourceMap": false,
"allowJs": true,
"outDir": "dist",
"strictNullChecks": true,
"skipLibCheck": true,
"lib": ["dom", "dom.iterable", "esnext"],
"strict": false,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"./**/*",
".next/types/**/*.ts",
".next/types/app/(legacy)/about/page.tsx"
],
"lib": ["es2015"],
"exclude": ["node_modules", "dist"]
}