mirror of
https://github.com/fluencelabs/js-mafmt
synced 2025-04-24 15:12:14 +00:00
39 lines
797 B
JSON
39 lines
797 B
JSON
|
|
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"target": "ES5",
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"mafmt": [
|
|
"./src",
|
|
"../src"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"mocha",
|
|
"chai"
|
|
],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"./src/index.d.ts"
|
|
],
|
|
"include": [
|
|
"./test/**/*.spec.js"
|
|
]
|
|
}
|