mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
49 lines
917 B
JSON
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"
|
|
]
|
|
}
|