|
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"lib": ["esnext", "dom"],
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"declaration": false
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|