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/*"]
|
|
|
|
},
|
2024-09-12 07:05:09 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
"rootDir": "./",
|
2024-09-12 05:17:38 +00:00
|
|
|
"noEmit": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
"module": "Node16",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"target": "ESNext"
|
|
|
|
},
|
2024-09-12 07:05:09 +00:00
|
|
|
"include": ["./core/**/*.d.ts"]
|
2024-09-12 05:17:38 +00:00
|
|
|
}
|