26 lines
645 B
JSON
26 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "nodenext",
|
|
"lib": ["ES2020"],
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"@bitstack/nopy": ["./packages/nopy/src"],
|
|
"@bitstack/keyman": ["./packages/keyman/src"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"experimentalSpecifierResolution": "node",
|
|
"transpileOnly": true,
|
|
"esm": true
|
|
},
|
|
"exclude": ["coverage", "node_modules", "dist"]
|
|
}
|