ribbit/tsconfig.json

16 lines
319 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "bundler",
"outDir": "dist",
"rootDir": "src/ts",
"declaration": true,
"sourceMap": true,
"lib": ["ES2019", "DOM"]
},
"include": ["src/ts/**/*.ts"],
"exclude": ["test/**/*"]
}