Skip to content
Snippets Groups Projects
tsconfig.json 494 B
Newer Older
{
  "compilerOptions": {
    "target": "es2019",
Marcus Schiesser's avatar
Marcus Schiesser committed
    "module": "esnext",
    "moduleResolution": "node",
    "strict": true,
    "resolveJsonModule": true,
yisding's avatar
yisding committed
    "skipLibCheck": true,
    "declaration": false,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "incremental": true,
yisding's avatar
yisding committed
    "tsBuildInfoFile": "./lib/.tsbuildinfo"
  "include": [
    "create-app.ts",
    "index.ts",
    "./helpers",
    "questions.ts",
yisding's avatar
yisding committed
    "package.json"
yisding's avatar
yisding committed
  "exclude": ["dist"]