mirror of
https://github.com/memodack/memodack.git
synced 2026-07-22 11:50:25 +00:00
21 lines
540 B
JSON
21 lines
540 B
JSON
{
|
|
"compilerOptions": {
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2015"
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["src/**/*.ts"]
|
|
}
|