mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
41 lines
920 B
JSON
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"]
|
|
}
|