Files
utility-closet/tsconfig.json
2024-04-02 08:51:12 -05:00

39 lines
793 B
JSON

{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
/* Projects */
"incremental": true,
"paths": {
"@subsequent-media/core/*": ["./pkg/*", "./dist/*"]
},
/* Language and Environment */
"target": "es2016",
/* Modules */
"module": "ESNext",
"rootDir": "./pkg",
"moduleResolution": "Bundler",
/* Emit */
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
/* Completeness */
"skipLibCheck": true
},
"include": ["pkg"],
"exclude": ["./dist", "node_modules"]
}