2022-03-06 19:46:59 -05:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
|
|
|
"pretty": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"skipLibCheck": true,
|
2022-03-07 23:42:44 -05:00
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"outDir": "dist"
|
2022-03-06 19:46:59 -05:00
|
|
|
},
|
|
|
|
"include": ["lib/**/*.ts", "index.ts", "src/**/*.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|