1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-04 07:19:56 +00:00
TiddlyWiki5/types/tsconfig.json

21 lines
584 B
JSON
Raw Normal View History

2024-09-12 05:17:38 +00:00
{
"compilerOptions": {
"paths": {
// Allow `import('$:/core/modules/...')` instead of `import('../../core/modules/...')`. Only works inside this project.
"$:/core/*": ["core/*"]
},
"baseUrl": "./generated",
"rootDir": "./generated",
"noEmit": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "types/generated",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "Node16",
"skipLibCheck": true,
"target": "ESNext"
},
"include": ["./generated/**/*.d.ts"]
}