mirror of
https://github.com/goenning/google-indexing-script.git
synced 2024-12-01 23:02:54 +03:00
28 lines
764 B
JSON
28 lines
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"moduleResolution": "node",
|
|
"removeComments": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules/", "dist/"]
|
|
}
|