Marc Cataford
0a2e11a67e
* build: devDependencies, yarn, node * build: typescript+ts-jest compatibility * ci: drop node@12, run on 14,16,18 * build: adjust linter * test: fix assumption based on node version
22 lines
534 B
JSON
22 lines
534 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"allowJs": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src", ".eslintrc.js"],
|
|
"exclude": [
|
|
"dist/**/*",
|
|
"tests/**/*"
|
|
]
|
|
}
|