16 lines
319 B
JSON
16 lines
319 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ES2017",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "dist",
|
|
"rootDir": "src/ts",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"lib": ["ES2019", "DOM"]
|
|
},
|
|
"include": ["src/ts/**/*.ts"],
|
|
"exclude": ["test/**/*"]
|
|
}
|