view web/tsconfig.json @ 6:a4659594f2e5

add web page
author drewp@bigasterisk.com
date Sat, 06 Jul 2024 16:44:47 -0700
parents
children
line wrap: on
line source

{
  "compilerOptions": {
    "strict": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "strictFunctionTypes": true,
    "strictNullChecks": true,
    "strictPropertyInitialization": true,
    "alwaysStrict": true,

    "types": [],

    "module": "ES6",
    "target": "ES6",
    "moduleResolution": "node",
    "sourceMap": true,
    "declaration": true,
    "experimentalDecorators": true,
    "allowJs": true,
    "esModuleInterop": true,
    "traceResolution": true,
    "baseUrl": ".",
    "lib": ["es6", "dom", "ES2019.Object"]
  },
  "include": ["./src"]
}