1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-18 16:53:14 +00:00
TiddlyWiki5/jsconfig.json

29 lines
569 B
JSON

{
"compilerOptions": {
"target": "ES2019",
"module": "CommonJS",
"lib": ["dom", "es2019"],
"allowSyntheticDefaultImports": true,
"checkJs": true,
"baseUrl": ".",
"paths": {
"$:/plugins/*": ["plugins/*"],
"$:/core/*": ["core/*"],
"$:/editions/*": ["editions/*"]
}
},
"include": [
"globals.d.ts",
"core/**/*.js",
"plugins/**/*.js",
"editions/**/*.js"
],
"exclude": [
"node_modules",
".git",
"dist",
"tmp",
"output"
]
}