ribbit/tsconfig.json

15 lines
285 B
JSON
Raw Normal View History

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