mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-03 23:09:56 +00:00
21 lines
584 B
JSON
21 lines
584 B
JSON
{
|
|
"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"]
|
|
}
|