webamp/packages/skin-database/tsconfig.json
2025-06-04 21:07:45 -07:00

49 lines
917 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"
],
"lib": [
"es2015"
],
"exclude": [
"node_modules",
"dist"
]
}