auth/tsconfig.json
2024-08-05 16:15:15 -04:00

15 lines
289 B
JSON

{
"compilerOptions": {
"alwaysStrict": true,
"target": "es6",
"module": "commonjs",
"lib": ["es6"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true
},
"exclude": ["node_modules/", "tests/"]
}