Skip to content
Snippets Groups Projects
tsconfig.json 433 B
Newer Older
{
  "compileOnSave": true,
glennvorhes's avatar
glennvorhes committed
  "version": "3.4.5",
  "compilerOptions": {
Glenn Vorhes's avatar
Glenn Vorhes committed
    "lib": ["es5", "es6", "dom"],
glennvorhes's avatar
glennvorhes committed
    "declaration": true,
glennvorhes's avatar
glennvorhes committed
    "watch": true,
glennvorhes's avatar
glennvorhes committed
    "baseUrl": "./",
    "module": "commonjs",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "target": "es2015",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "sourceMap": true,
Glenn Vorhes's avatar
Glenn Vorhes committed
    "inlineSources": true,
    "jsx": "react",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "noEmitOnError": true,
Glenn Vorhes's avatar
Glenn Vorhes committed
    "rootDir": "./src",
Glenn Vorhes's avatar
Glenn Vorhes committed
    "outDir": "./dist",
glennvorhes's avatar
glennvorhes committed
    "noImplicitAny": false
glennvorhes's avatar
glennvorhes committed
  "exclude": ["test/*", "dist/*"]