{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}
{
"compilerOptions": {
"target": "ES5" | "ES6" | "ES2015" | "ES2020" | "ESNext"
}
}
{
"compilerOptions": {
"module": "CommonJS" | "AMD" | "ES6" | "ES2015" | "ESNext"
}
}
{
"compilerOptions": {
"lib": ["ES2020", "DOM", "DOM.Iterable"]
}
}
{
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true
}
}
{
"compilerOptions": {
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"]
}
}
}
{
"compilerOptions": {
"outDir": "./dist",
"outFile": "./bundle.js",
"removeComments": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true
}
}
{
"compilerOptions": {
"composite": true,
"declaration": true
},
"references": [
{ "path": "../shared" }
]
}