18 lines
341 B
JSON
18 lines
341 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./spec/**/*.ts",
|
|
]
|
|
}
|