editor.js/tsconfig.json
2024-04-08 22:19:52 +03:00

21 lines
579 B
JSON

{
"compilerOptions" : {
"sourceMap": true,
"target": "es2017",
"strict": true,
"declaration": false,
"moduleResolution": "node", // This resolution strategy attempts to mimic the Node.js module resolution mechanism at runtime
"lib": ["dom", "es2017", "es2018", "es2019"],
// allows to import .json files for i18n
"resolveJsonModule": true,
// allows to omit export default in .json files
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@types": ["types"]
}
}
}