20 lines
485 B
JSON
20 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"baseUrl": "./",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"mapRoot": "./dist/",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"paths": {},
|
|
"sourceMap": true,
|
|
"target": "es6",
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"include": ["test/**/*", "src/**/*"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|