webamp/packages/skin-database/tsconfig.json
2024-05-07 16:00:31 -07:00

23 lines
577 B
JSON

{
"grats": {
"nullableByDefault": true,
"graphqlSchema": "./api/graphql/schema.graphql",
"tsSchema": "./api/graphql/schema.ts",
"strictSemanticNullability": true
},
"compilerOptions": {
"plugins": [{ "name": "grats-ts-plugin" }],
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"moduleResolution": "node",
"sourceMap": false,
"allowJs": true,
"outDir": "dist",
"strictNullChecks": true,
"skipLibCheck": true
},
"include": ["./**/*"],
"lib": ["es2015"],
"exclude": ["node_modules", "dist"]
}